diff --git a/app-template/bitpay/appConfig.json b/app-template/bitpay/appConfig.json index ff4812880..cadef9de0 100644 --- a/app-template/bitpay/appConfig.json +++ b/app-template/bitpay/appConfig.json @@ -24,7 +24,7 @@ "pushSenderId": "1036948132229", "description": "Secure Bitcoin Wallet", "version": "3.8.1", - "androidVersion": "381000", + "androidVersion": "381001", "_extraCSS": null, "_enabledExtensions": { "coinbase": true, diff --git a/app-template/copay/appConfig.json b/app-template/copay/appConfig.json index e18f23ec9..a7d1b277a 100644 --- a/app-template/copay/appConfig.json +++ b/app-template/copay/appConfig.json @@ -24,7 +24,7 @@ "pushSenderId": "1036948132229", "description": "A Secure Bitcoin Wallet", "version": "3.8.1", - "androidVersion": "381000", + "androidVersion": "381001", "_extraCSS": null, "_enabledExtensions": { "coinbase": true, diff --git a/src/js/controllers/import.js b/src/js/controllers/import.js index b2b6ab0be..096fa41c5 100644 --- a/src/js/controllers/import.js +++ b/src/js/controllers/import.js @@ -23,7 +23,7 @@ angular.module('copayApp.controllers').controller('importController', value: false }; - if (config.cashSupport.enabled) $scope.enableCash = true; + if (config.cashSupport) $scope.enableCash = true; if ($stateParams.code) $scope.processWalletInfo($stateParams.code); diff --git a/src/js/controllers/join.js b/src/js/controllers/join.js index 2a209701d..218d61725 100644 --- a/src/js/controllers/join.js +++ b/src/js/controllers/join.js @@ -12,7 +12,7 @@ angular.module('copayApp.controllers').controller('joinController', $scope.formData.account = 1; $scope.formData.secret = null; $scope.formData.coin = 'btc'; - if (config.cashSupport.enabled) $scope.enableCash = true; + if (config.cashSupport) $scope.enableCash = true; resetPasswordFields(); updateSeedSourceSelect(); });