Merge pull request #4902 from gabrielbazan7/feat/newRealeases

new releases
This commit is contained in:
Matias Alejo Garcia 2016-10-27 11:58:06 -03:00 committed by GitHub
commit 72f3a79457
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);
});