Bug 361911: Unable to install updates on startup after dismissing notifications. r=robstrong

This commit is contained in:
dtownsend@oxymoronical.com 2008-03-06 17:59:42 -08:00
Родитель dd8f3d7cff
Коммит ce825ee68c
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -2140,8 +2140,11 @@ function installUpdatesAll() {
if (!isXPInstallEnabled()) if (!isXPInstallEnabled())
return; return;
if (gUpdatesOnly) if (gUpdatesOnly) {
document.getElementById("addonsMsg").removeCurrentNotification(); var notifications = document.getElementById("addonsMsg");
if (notifications.currentNotification)
notifications.removeCurrentNotification();
}
var items = []; var items = [];
var children = gExtensionsView.children; var children = gExtensionsView.children;