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

Store attachment on sd card is now off by default (which is what it should have been in the first place)

This commit is contained in:
Bao-Long Nguyen-Trong 2010-02-11 05:37:50 +00:00
parent 2bd4f9632b
commit 8d8233bcc0

View File

@ -297,7 +297,7 @@ public class Account implements Serializable
} }
mIsSignatureBeforeQuotedText = preferences.getPreferences().getBoolean(mUuid + ".signatureBeforeQuotedText", false); mIsSignatureBeforeQuotedText = preferences.getPreferences().getBoolean(mUuid + ".signatureBeforeQuotedText", false);
mStoreAttachmentsOnSdCard = preferences.getPreferences().getBoolean(mUuid + ".storeAttachmentOnSdCard", true); mStoreAttachmentsOnSdCard = preferences.getPreferences().getBoolean(mUuid + ".storeAttachmentOnSdCard", false);
identities = loadIdentities(preferences.getPreferences()); identities = loadIdentities(preferences.getPreferences());
} }