2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 14:45:14 +00:00

Replaced mapping to rpl::empty_value with rpl::to_empty.

This commit is contained in:
23rd
2020-06-21 19:25:29 +03:00
committed by John Preston
parent e318a7d65f
commit 0696a2d5c0
29 changed files with 60 additions and 111 deletions

View File

@@ -155,7 +155,7 @@ rpl::producer<bool> NotificationsEnabledValue(not_null<PeerData*> peer) {
peer->session().changes().peerFlagsValue(
peer,
UpdateFlag::Notifications
) | rpl::map([] { return rpl::empty_value(); }),
) | rpl::to_empty,
peer->owner().defaultNotifyUpdates(peer)
) | rpl::map([=] {
return !peer->owner().notifyIsMuted(peer);