Do not add chats without notifications to notification settings exceptions.
GitOrigin-RevId: 64006dfd576b4d1483ba22068bc20de409bc0c64
This commit is contained in:
parent
f8ccec8a44
commit
a7ef1062a5
@ -13512,11 +13512,15 @@ vector<DialogId> MessagesManager::get_dialog_notification_settings_exceptions(No
|
||||
bool force, Promise<Unit> &&promise) {
|
||||
if (last_dialog_date_ == MAX_DIALOG_DATE || force) {
|
||||
vector<DialogId> result;
|
||||
auto my_dialog_id = get_my_dialog_id();
|
||||
for (const auto &it : ordered_server_dialogs_) {
|
||||
auto dialog_id = it.get_dialog_id();
|
||||
if (filter_scope && get_dialog_notification_setting_scope(dialog_id) != scope) {
|
||||
continue;
|
||||
}
|
||||
if (dialog_id == my_dialog_id) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Dialog *d = get_dialog(dialog_id);
|
||||
CHECK(d != nullptr);
|
||||
@ -13526,6 +13530,9 @@ vector<DialogId> MessagesManager::get_dialog_notification_settings_exceptions(No
|
||||
if (are_default_dialog_notification_settings(d->notification_settings, compare_sound)) {
|
||||
continue;
|
||||
}
|
||||
if (is_dialog_message_notification_disabled(dialog_id, std::numeric_limits<int32>::max())) {
|
||||
continue;
|
||||
}
|
||||
result.push_back(dialog_id);
|
||||
}
|
||||
promise.set_value(Unit());
|
||||
|
Loading…
Reference in New Issue
Block a user