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

Commit b325668

Browse files
author
Marcel Gerber
committed
Fix Update check starting with the wrong URL
1 parent 661e34f commit b325668

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/utils/UpdateNotification.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,11 @@ define(function (require, exports, module) {
176176
}).always(function (jqXHR, status, error) {
177177
lookupPromise.resolve();
178178
});
179+
} else {
180+
localVersionInfoUrl = _getVersionInfoUrl("en");
181+
lookupPromise.resolve();
179182
}
180-
}).always(function (jqXHR, status, error) {
183+
}).done(function (jqXHR, status, error) {
181184
lookupPromise.resolve();
182185
});
183186
} else {

0 commit comments

Comments
 (0)