Fix handler url after first installation

This commit is contained in:
Gustavo Maximiliano Cortez 2016-11-02 10:33:14 -03:00
commit 549e86e872
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -998,10 +998,12 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
$log.debug('Profile loaded ... Starting UX.');
scannerService.gentleInitialize();
$state.go('tabs.home');
$timeout(function() {
openURLService.init();
}, 1000);
}
// After everything have been loaded, initialize handler URL
$timeout(function() {
openURLService.init();
}, 1000);
});
});