Bug 1656494 - Skip the hiding animation when notifications are removed without user interaction. r=Gijs

Differential Revision: https://phabricator.services.mozilla.com/D87491
This commit is contained in:
Jared Wein 2020-08-23 22:24:15 +00:00
Родитель 6c6d41cb43
Коммит 22296b0dde
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -283,7 +283,7 @@
if (notification.persistence) {
notification.persistence--;
} else if (Date.now() > notification.timeout) {
this.removeNotification(notification);
this.removeNotification(notification, true);
}
}
}