mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 14:35:03 +01:00
Bug fixes
This commit is contained in:
parent
85239ed7cf
commit
f563fbbb05
2 changed files with 5 additions and 2 deletions
|
@ -5787,7 +5787,7 @@ public class MessagesController implements NotificationCenter.NotificationCenter
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
long dialog_id = -update.channel_id;
|
long dialog_id = -message.to_id.channel_id;
|
||||||
Integer value = dialogs_read_inbox_max.get(dialog_id);
|
Integer value = dialogs_read_inbox_max.get(dialog_id);
|
||||||
if (value == null) {
|
if (value == null) {
|
||||||
value = MessagesStorage.getInstance().getDialogReadInboxMax(dialog_id);
|
value = MessagesStorage.getInstance().getDialogReadInboxMax(dialog_id);
|
||||||
|
|
|
@ -417,6 +417,9 @@ public class NotificationsController {
|
||||||
value = !(notifyOverride == 2 || (!preferences.getBoolean("EnableAll", true) || isChat && !preferences.getBoolean("EnableGroup", true)) && notifyOverride == 0);
|
value = !(notifyOverride == 2 || (!preferences.getBoolean("EnableAll", true) || isChat && !preferences.getBoolean("EnableGroup", true)) && notifyOverride == 0);
|
||||||
settingsCache.put(dialog_id, value);
|
settingsCache.put(dialog_id, value);
|
||||||
}
|
}
|
||||||
|
if (popup != 0 && messageObject.messageOwner.to_id.channel_id != 0 && !messageObject.isMegagroup()) {
|
||||||
|
popup = 0;
|
||||||
|
}
|
||||||
if (value) {
|
if (value) {
|
||||||
if (popup != 0) {
|
if (popup != 0) {
|
||||||
popupArray.add(0, messageObject);
|
popupArray.add(0, messageObject);
|
||||||
|
|
Loading…
Reference in a new issue