testing beta update to 9014002, frequent beta update check, no creating .desktop file for beta

This commit is contained in:
John Preston
2015-12-04 17:29:57 +03:00
parent 8552b8421b
commit c8c13219ed
5 changed files with 9 additions and 8 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ int main(int argc, char *argv[])
} else if (string("-dev") == argv[i]) {
DevChannel = true;
} else if (string("-beta") == argv[i] && i + 1 < argc) {
BetaVersion = QString(argv[i + 1]).toLongLong();
BetaVersion = QString(argv[i + 1]).toULongLong();
if (BetaVersion > version * 1000ULL && BetaVersion < (version + 1) * 1000ULL) {
DevChannel = false;
BetaSignature = countBetaVersionSignature(BetaVersion);