From 89f901d54636e6ed08789a3099421aa714e92e10 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Mon, 22 Aug 2016 19:17:31 -0300 Subject: [PATCH] fix config --- src/js/services/configService.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/js/services/configService.js b/src/js/services/configService.js index 41562a0ed..5f0ebe92c 100644 --- a/src/js/services/configService.js +++ b/src/js/services/configService.js @@ -115,14 +115,15 @@ angular.module('copayApp.services').factory('configService', function(storageSer configCache.pushNotifications = defaultConfig.pushNotifications; } - configCache.bwsFor = configCache.bwsFor || {}; - configCache.colorFor = configCache.colorFor || {}; - configCache.aliasFor = configCache.aliasFor || {}; - } else { configCache = lodash.clone(defaultConfig); }; + configCache.bwsFor = configCache.bwsFor || {}; + configCache.colorFor = configCache.colorFor || {}; + configCache.aliasFor = configCache.aliasFor || {}; + + // Glidera // Disabled for testnet configCache.glidera.testnet = false;