diff --git a/package.json b/package.json index 243be9a41..a6b7ae511 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "copay", - "description": "A multisignature wallet", + "description": "A multisignature bitcoin wallet", "author": "BitPay", "version": "2.0.0", "androidVersionCode": "105", @@ -13,7 +13,7 @@ ], "main": "public/index.html", "window": { - "title": "Copay - A multisignature wallet", + "title": "Copay - A multisignature bitcoin wallet", "icon": "./public/img/icons/icon-256.png", "toolbar": false, "show": true, diff --git a/src/js/services/profileService.js b/src/js/services/profileService.js index 5d738dbcb..3603d8691 100644 --- a/src/js/services/profileService.js +++ b/src/js/services/profileService.js @@ -95,7 +95,7 @@ angular.module('copayApp.services') client.on('walletCompleted', function() { $log.debug('Wallet completed'); - root.updateCredentials(client.export(), function() { + root.updateCredentials(JSON.parse(client.export()), function() { $rootScope.$emit('Local/WalletCompleted', walletId); }); });