From cf58dfab2190b442c9a92d60ace2ccd0ca46a085 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Wed, 15 Jun 2016 11:17:52 -0300 Subject: [PATCH] fix join wallet --- src/js/services/profileService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); });