fix storage pull
This commit is contained in:
parent
2d05e05e31
commit
2d3da332c4
1 changed files with 8 additions and 5 deletions
|
|
@ -450,7 +450,10 @@ angular.module('copayApp.services')
|
||||||
var allAccounts = {};
|
var allAccounts = {};
|
||||||
try {
|
try {
|
||||||
allAccounts = JSON.parse(allAccountsStr);
|
allAccounts = JSON.parse(allAccountsStr);
|
||||||
} catch (e) {};
|
} catch (e) {
|
||||||
|
$log.error('Bad storage value for bitpayAccount-v2' + allAccountsStr)
|
||||||
|
return cb(null, {});
|
||||||
|
};
|
||||||
|
|
||||||
var anyMigration;
|
var anyMigration;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue