Little fixes on reconnecting event

This commit is contained in:
Gustavo Maximiliano Cortez 2015-06-25 15:37:39 -03:00
commit 6bcc7a4369
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -667,10 +667,10 @@ angular.module('copayApp.controllers').controller('indexController', function($r
$rootScope.$on('Local/Online', function(event) {
$log.debug('### Online event');
self.isOffline = false;
self.offLineSince = null;
if (self.isOffline) {
self.debouncedUpdate();
self.isOffline = false;
self.offLineSince = null;
}
});