Bug 595059 - Incorrect errorCode comparison and enabled check in showUpdateError. r=dtownsend, a=approval2.0 dtownsend

This commit is contained in:
Robert Strong 2010-09-10 21:40:49 -04:00
Родитель c0db3d256b
Коммит 67b1d90728
1 изменённых файлов: 1 добавлений и 4 удалений

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

@ -2814,12 +2814,9 @@ UpdatePrompt.prototype = {
* See nsIUpdateService.idl
*/
showUpdateError: function UP_showUpdateError(update) {
if (!this._enabled)
return;
if (update.errorCode &&
(update.errorCode == CERT_ATTR_CHECK_FAILED_NO_UPDATE ||
update.errorCode != CERT_ATTR_CHECK_FAILED_HAS_UPDATE)) {
update.errorCode == CERT_ATTR_CHECK_FAILED_HAS_UPDATE)) {
this._showUIWhenIdle(null, URI_UPDATE_PROMPT_DIALOG, null,
UPDATE_WINDOW_NAME, null, update);
return;