diff --git a/src/js/client.js b/src/js/client.js index 8adb576bf..7bcb1cd94 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -1821,8 +1821,8 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout return iteratorCallback(); } - if (that._installedAppsById[app.id] && that._installedAppsById[app.id].ts === app.ts) { - if (!app.taskId) return iteratorCallback(); // app has not changed and no task to check progress + if (that._installedAppsById[app.id]) { + if (!app.taskId) return iteratorCallback(); // app has active task, get latest } that.refreshAppCache(app.id, iteratorCallback);