From 0d8bfe4eec9da52cd046e07edfa3c533cdcb95da Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Mon, 29 Feb 2016 18:41:10 -0300 Subject: [PATCH] Go home after import --- src/js/controllers/import.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/js/controllers/import.js b/src/js/controllers/import.js index 23e349a17..1fafc073f 100644 --- a/src/js/controllers/import.js +++ b/src/js/controllers/import.js @@ -95,6 +95,7 @@ angular.module('copayApp.controllers').controller('importController', } $rootScope.$emit('Local/WalletImported', walletId); notification.success(gettext('Success'), gettext('Your wallet has been imported correctly')); + go.walletHome(); }); }, 100); }; @@ -113,6 +114,7 @@ angular.module('copayApp.controllers').controller('importController', } $rootScope.$emit('Local/WalletImported', walletId); notification.success(gettext('Success'), gettext('Your wallet has been imported correctly')); + go.walletHome(); }); }, 100); };