add error event

This commit is contained in:
Gabriel Bazán 2016-10-06 12:17:32 -03:00
parent 3d6820eb95
commit 66cea8df9d
1 changed files with 5 additions and 0 deletions

View File

@ -333,6 +333,11 @@ angular.module('copayApp.services')
}, 100);
}
});
push.on('error', function(e) {
$log.error(e.message);
});
};
root.loadAndBindProfile = function(cb) {