Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1533 from adobe/glenn/issue-1530
Browse files Browse the repository at this point in the history
Fix for issue #1530
  • Loading branch information
njx committed Aug 30, 2012
2 parents 97785a4 + 4e489ff commit bf34780
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/utils/UpdateNotification.js
Expand Up @@ -331,11 +331,13 @@ define(function (require, exports, module) {
})
.fail(function () {
// Error fetching the update data. If this is a forced check, alert the user
Dialogs.showModalDialog(
Dialogs.DIALOG_ID_ERROR,
Strings.ERROR_FETCHING_UPDATE_INFO_TITLE,
Strings.ERROR_FETCHING_UPDATE_INFO_MSG
);
if (force) {
Dialogs.showModalDialog(
Dialogs.DIALOG_ID_ERROR,
Strings.ERROR_FETCHING_UPDATE_INFO_TITLE,
Strings.ERROR_FETCHING_UPDATE_INFO_MSG
);
}
result.reject();
});

Expand Down

0 comments on commit bf34780

Please sign in to comment.