Statusbar: If do not have any wallet

This commit is contained in:
Gustavo Maximiliano Cortez 2016-08-10 12:14:35 -03:00
commit 23596b749f
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -106,9 +106,9 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
$rootScope.shouldHideMenuBar = false;
});
if (platformInfo.isCordova && StatusBar.isVisible) {
var fc = profileService.focusedClient;
StatusBar.backgroundColorByHexString(fc.backgroundColor);
if (isCordova && StatusBar.isVisible) {
var backgroundColor = profileService.focusedClient ? profileService.focusedClient.backgroundColor : "#4B6178";
StatusBar.backgroundColorByHexString(backgroundColor);
}
this.onQrCodeScanned = function(data) {