1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-12 04:25:08 -05:00

Fix condition to check whether or not the database needs upgrading

This commit is contained in:
cketti 2013-01-14 09:32:43 +01:00
parent cdd5694931
commit ae7ddcdd5f

View File

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