new releases

This commit is contained in:
Gabriel Bazán 2016-10-26 12:56:33 -03:00
commit 7fc0bb6fb2
4 changed files with 36 additions and 2 deletions

View file

@ -23,7 +23,7 @@ angular.module('copayApp.services')
if (latest.major < current.major || (latest.major == current.major && latest.minor <= current.minor))
return cb(null, false);
$log.debug('A new version of Copay is available: ' + latestVersion);
$log.debug('A new version is available: ' + latestVersion);
return cb(null, true);
});