зеркало из https://github.com/mozilla/gecko-dev.git
Bug 361911: Unable to install updates on startup after dismissing notifications. r=robstrong
This commit is contained in:
Родитель
23b794404d
Коммит
eddaaed8a4
|
@ -2140,8 +2140,11 @@ function installUpdatesAll() {
|
|||
if (!isXPInstallEnabled())
|
||||
return;
|
||||
|
||||
if (gUpdatesOnly)
|
||||
document.getElementById("addonsMsg").removeCurrentNotification();
|
||||
if (gUpdatesOnly) {
|
||||
var notifications = document.getElementById("addonsMsg");
|
||||
if (notifications.currentNotification)
|
||||
notifications.removeCurrentNotification();
|
||||
}
|
||||
|
||||
var items = [];
|
||||
var children = gExtensionsView.children;
|
||||
|
|
Загрузка…
Ссылка в новой задаче