fixed bug in controllerUtils#isFocusedWallet

This commit is contained in:
Ivan Socolsky 2014-10-31 12:03:37 -03:00
parent 653db8f320
commit 076d4c20cf
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ angular.module('copayApp.services')
root.isFocusedWallet = function(wid) {
return wid === $rootScope.wallet.getId();
return $rootScope.wallet && wid === $rootScope.wallet.getId();
};