From 89dcc3646b3c8a2ea6304858af1670b068a8548d Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sun, 29 Aug 2010 16:58:04 +0000 Subject: [PATCH] Database version bump to clear bogus cached attachments --- src/com/fsck/k9/mail/store/LocalStore.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/com/fsck/k9/mail/store/LocalStore.java b/src/com/fsck/k9/mail/store/LocalStore.java index 63f557be3..7e210c246 100644 --- a/src/com/fsck/k9/mail/store/LocalStore.java +++ b/src/com/fsck/k9/mail/store/LocalStore.java @@ -44,7 +44,7 @@ public class LocalStore extends Store implements Serializable */ private static final String[] EMPTY_STRING_ARRAY = new String[0]; - private static final int DB_VERSION = 37; + private static final int DB_VERSION = 38; private static final Flag[] PERMANENT_FLAGS = { Flag.DELETED, Flag.X_DESTROYED, Flag.SEEN, Flag.FLAGGED }; private String mPath; @@ -270,6 +270,8 @@ public class LocalStore extends Store implements Serializable } + // Database version 38 is solely to prune cached attachments now that we clear them better + } }