mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 09:03:56 +02:00
Limit SVG file size to 512 KiB
This commit is contained in:
@@ -3750,7 +3750,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
|
||||
boolean hide_attachments = properties.getValue("hide_attachments", message.id, hide_attachments_default);
|
||||
boolean show_inline = properties.getValue("inline", message.id);
|
||||
boolean svg = prefs.getBoolean("svg", !Helper.isPlayStoreInstall());
|
||||
boolean svg = prefs.getBoolean("svg", true);
|
||||
boolean webp = prefs.getBoolean("webp", true);
|
||||
|
||||
Log.i("Hide attachments=" + hide_attachments + " Show inline=" + show_inline);
|
||||
|
||||
Reference in New Issue
Block a user