Skip to content

Commit 3fa1e0c

Browse files
authored
Merge pull request #11901 from wordpress-mobile/merge/14.7.1-to-14.8
Merge 14.7.1 to 14.8
2 parents 414f9e9 + 2074fae commit 3fa1e0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

WordPress/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ android {
8787
if (!project.hasProperty("versionName")) {
8888
versionName "14.8-rc-2"
8989
}
90-
versionCode 861
90+
versionCode 863
9191
buildConfigField "boolean", "ME_ACTIVITY_AVAILABLE", "false"
9292
buildConfigField "boolean", "TENOR_AVAILABLE", "false"
9393
}

WordPress/src/main/java/org/wordpress/android/datasets/ReaderDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
176176
if (currentVersion <= DB_LAST_VERSION_WITHOUT_MIGRATION_SCRIPT) {
177177
// versions 0 - 136 didn't support migration scripts, so we can safely drop and recreate all tables
178178
reset(db);
179-
currentVersion = DB_LAST_VERSION_WITHOUT_MIGRATION_SCRIPT;
179+
currentVersion = newVersion;
180180
}
181181

182182
switch (currentVersion) {

0 commit comments

Comments
 (0)