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:
parent
e5c35b958d
commit
c835b21558
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue