1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Fix database version cache logic

This commit is contained in:
cketti 2012-12-04 04:55:52 +01:00
parent 301c8549e0
commit d30cda26fb

View File

@ -638,7 +638,7 @@ public class K9 extends Application {
int cachedVersion = sDatabaseVersionCache.getInt(KEY_LAST_ACCOUNT_DATABASE_VERSION, 0);
if (cachedVersion < LocalStore.DB_VERSION) {
if (cachedVersion > 0 && cachedVersion <= LocalStore.DB_VERSION) {
K9.setDatabasesUpToDate(false);
}
}