When running from browser for first time configCache.wallet is not found

This commit is contained in:
Gregg Zigler 2015-06-17 07:32:50 -07:00
commit cffb4454fa

View file

@ -57,6 +57,9 @@ angular.module('copayApp.services').factory('configService', function(storageSer
if (!configCache.bws) {
configCache.bws = defaultConfig.bws;
}
if (!configCache.wallet) {
configCache.wallet = defaultConfig.wallet;
}
if (!configCache.wallet.settings.unitCode) {
configCache.wallet.settings.unitCode = defaultConfig.wallet.settings.unitCode;
}