Fix incorrect version check in db helper.

This commit is contained in:
Peter Serwylo 2016-10-05 23:52:06 +11:00
parent 486e8e699f
commit 88c536efb4

View File

@ -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