Run update checker on stopped apps, we just don't update them

This commit is contained in:
Girish Ramakrishnan
2020-05-28 12:35:49 -07:00
parent 433e783ede
commit 20d1759fa5
-1
View File
@@ -83,7 +83,6 @@ function checkAppUpdates(options, callback) {
async.eachSeries(result, function (app, iteratorDone) {
if (app.appStoreId === '') return iteratorDone(); // appStoreId can be '' for dev apps
if (app.runState === apps.RSTATE_STOPPED) return iteratorDone(); // stopped apps won't run migration scripts and shouldn't be updated
appstore.getAppUpdate(app, options, function (error, updateInfo) {
if (error) {