mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 15:11:03 +00:00
parent
3232e0c979
commit
a5eef36e47
2 changed files with 2 additions and 2 deletions
|
@ -1440,7 +1440,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
|
|||
swImagesPlaceholders.setChecked(prefs.getBoolean("image_placeholders", true));
|
||||
swImagesInline.setChecked(prefs.getBoolean("inline_images", false));
|
||||
swButtonExtra.setChecked(prefs.getBoolean("button_extra", false));
|
||||
swUnzip.setChecked(prefs.getBoolean("unzip", true));
|
||||
swUnzip.setChecked(prefs.getBoolean("unzip", false));
|
||||
swAttachmentsAlt.setChecked(prefs.getBoolean("attachments_alt", false));
|
||||
swThumbnails.setChecked(prefs.getBoolean("thumbnails", true));
|
||||
|
||||
|
|
|
@ -3377,7 +3377,7 @@ public class MessageHelper {
|
|||
|
||||
else if ("application/zip".equals(local.type)) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean unzip = prefs.getBoolean("unzip", true);
|
||||
boolean unzip = prefs.getBoolean("unzip", false);
|
||||
|
||||
if (unzip) {
|
||||
// https://developer.android.com/reference/java/util/zip/ZipInputStream
|
||||
|
|
Loading…
Reference in a new issue