mirror of https://github.com/procxx/kepka.git
Fix default broadcast notification settings.
This commit is contained in:
parent
5be9ce0cf0
commit
2f963d7f12
|
@ -1847,14 +1847,18 @@ NotifySettings &Session::defaultNotifySettings(
|
||||||
not_null<const PeerData*> peer) {
|
not_null<const PeerData*> peer) {
|
||||||
return peer->isUser()
|
return peer->isUser()
|
||||||
? _defaultUserNotifySettings
|
? _defaultUserNotifySettings
|
||||||
: _defaultChatNotifySettings;
|
: (peer->isChat() || peer->isMegagroup())
|
||||||
|
? _defaultChatNotifySettings
|
||||||
|
: _defaultBroadcastNotifySettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
const NotifySettings &Session::defaultNotifySettings(
|
const NotifySettings &Session::defaultNotifySettings(
|
||||||
not_null<const PeerData*> peer) const {
|
not_null<const PeerData*> peer) const {
|
||||||
return peer->isUser()
|
return peer->isUser()
|
||||||
? _defaultUserNotifySettings
|
? _defaultUserNotifySettings
|
||||||
: _defaultChatNotifySettings;
|
: (peer->isChat() || peer->isMegagroup())
|
||||||
|
? _defaultChatNotifySettings
|
||||||
|
: _defaultBroadcastNotifySettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Session::updateNotifySettingsLocal(not_null<PeerData*> peer) {
|
void Session::updateNotifySettingsLocal(not_null<PeerData*> peer) {
|
||||||
|
|
Loading…
Reference in New Issue