From d112983604bc1cd9d3528aa8aa0f300ed4999606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Tue, 21 Feb 2017 16:25:45 -0500 Subject: [PATCH] fix No wallets/card/anything in tab-home when resume app --- src/js/controllers/tab-home.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/js/controllers/tab-home.js b/src/js/controllers/tab-home.js index d3d6e9610..94e803997 100644 --- a/src/js/controllers/tab-home.js +++ b/src/js/controllers/tab-home.js @@ -75,7 +75,10 @@ angular.module('copayApp.controllers').controller('tabHomeController', }); $scope.$on("$ionicView.enter", function(event, data) { - updateAllWallets(); + + $timeout(function() { + updateAllWallets(); + }); addressbookService.list(function(err, ab) { if (err) $log.error(err);