App version is part of the manifest

This commit is contained in:
Johannes Zellner
2015-02-28 19:31:43 +01:00
parent 7def8da583
commit 24788edfce
+1 -1
View File
@@ -227,7 +227,7 @@ function getAll(callback) {
app.updateVersion = null;
updates.some(function (update) {
if (update.appId === app.appStoreId && update.version !== app.version) {
if (update.appId === app.appStoreId && update.version !== app.manifest.version) {
app.updateVersion = update.version;
return true;
} else {