Merge pull request #477 from matiu/bug/receive-refresh

fix refresh error on tab-receive
This commit is contained in:
Jason Dreyzehner 2016-10-16 00:12:53 -04:00 committed by GitHub
commit a452049f93

View file

@ -23,7 +23,10 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
if (err) popupService.showAlert(gettextCatalog.getString('Error'), err);
$scope.addr = addr;
if ($scope.wallet.showBackupNeededModal) $scope.openBackupNeededModal();
$scope.$apply();
$timeout(function(){
$scope.$apply();
},10);
});
};