Fix incorrect version check in db helper.

This commit is contained in:
Peter Serwylo 2016-10-05 23:52:06 +11:00 committed by Danial Behzadi
parent 9170cdc6ac
commit 75b93a5457

@ -819,7 +819,7 @@ class DBHelper extends SQLiteOpenHelper {
}
private void supportRepoPushRequests(SQLiteDatabase db, int oldVersion) {
if (oldVersion >= 61) {
if (oldVersion >= 62) {
return;
}
Utils.debugLog(TAG, "Adding " + RepoTable.Cols.PUSH_REQUESTS