diff --git a/app/manifest.json b/app/manifest.json index 1ca0f55e9..dba3a7c6a 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,6 +1,6 @@ { "name": "__MSG_appName__", - "version": "1.0.0", + "version": "1.1.0", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js index e3f2a841d..f0e566e5e 100644 --- a/app/scripts/lib/idStore.js +++ b/app/scripts/lib/idStore.js @@ -57,7 +57,7 @@ IdentityStore.prototype.recoverFromSeed = function(password, seed, cb){ this._loadIdentities() this._didUpdate() - cb() + cb(null, this.getState()) }) }