1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-01 17:26:12 +00:00

Disable showing images/html for messages moved to the spam folder

This commit is contained in:
M66B 2024-06-04 09:06:35 +02:00
parent e5c35b958d
commit c835b21558

View file

@ -263,6 +263,9 @@ public class EntityOperation {
if (EntityFolder.JUNK.equals(target.type) && if (EntityFolder.JUNK.equals(target.type) &&
Objects.equals(source.account, target.account)) { Objects.equals(source.account, target.account)) {
message.show_images = false;
message.show_full = false;
Boolean noblock = (Boolean) jargs.opt(3); Boolean noblock = (Boolean) jargs.opt(3);
jargs.remove(3); jargs.remove(3);
boolean block = (noblock == null ? auto_block_sender : !noblock); boolean block = (noblock == null ? auto_block_sender : !noblock);