Fix infinite checking mute_until

This commit is contained in:
Eduard Kuzmenko 2022-01-26 17:52:04 +04:00
parent 777d1f5da7
commit 385382d989

View File

@ -436,13 +436,13 @@ export class AppNotificationsManager {
} }
const muteUntil = peerNotifySettings.mute_until; const muteUntil = peerNotifySettings.mute_until;
if(muteUntil === undefined) { if(!muteUntil) {
continue; continue;
} }
if(muteUntil <= timestamp) { if(muteUntil <= timestamp) {
// ! do not delete it because peer's unique settings will be overwritten in getPeerLocalSettings with type's settings // ! do not delete it because peer's unique settings will be overwritten in getPeerLocalSettings with type's settings
// delete peerNotifySettings.mute_until; peerNotifySettings.mute_until = 0;
rootScope.dispatchEvent('updateNotifySettings', { rootScope.dispatchEvent('updateNotifySettings', {
_: 'updateNotifySettings', _: 'updateNotifySettings',