Skip to content

Commit 3d93c64

Browse files
start checkBalances only after GUI app has shown balances
1 parent 7853f6f commit 3d93c64

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/js/controllers/index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1517,6 +1517,12 @@ angular.module('copayApp.controllers').controller('indexController', function($r
15171517
$timeout(function() {
15181518
$rootScope.$apply();
15191519
});
1520+
1521+
if (!self.bFirstBalanceDone) {
1522+
self.bFirstBalanceDone = true;
1523+
console.log('first balance done');
1524+
eventBus.emit('app_ready');
1525+
}
15201526
};
15211527

15221528

0 commit comments

Comments
 (0)