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) {
|
||||
return peer->isUser()
|
||||
? _defaultUserNotifySettings
|
||||
: _defaultChatNotifySettings;
|
||||
: (peer->isChat() || peer->isMegagroup())
|
||||
? _defaultChatNotifySettings
|
||||
: _defaultBroadcastNotifySettings;
|
||||
}
|
||||
|
||||
const NotifySettings &Session::defaultNotifySettings(
|
||||
not_null<const PeerData*> peer) const {
|
||||
return peer->isUser()
|
||||
? _defaultUserNotifySettings
|
||||
: _defaultChatNotifySettings;
|
||||
: (peer->isChat() || peer->isMegagroup())
|
||||
? _defaultChatNotifySettings
|
||||
: _defaultBroadcastNotifySettings;
|
||||
}
|
||||
|
||||
void Session::updateNotifySettingsLocal(not_null<PeerData*> peer) {
|
||||
|
|
Loading…
Reference in New Issue