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

PGP: spaces should be stripped by the sender

This commit is contained in:
M66B 2024-07-25 13:04:34 +02:00
parent c84cb33060
commit 84b869077f

View file

@ -6208,7 +6208,7 @@ public class MessageHelper {
return false; return false;
} }
if (EntityAttachment.PGP_CONTENT.equals(content) || boundary == null) if (/*EntityAttachment.PGP_CONTENT.equals(content) ||*/ boundary == null)
line = line.replaceAll(" +$", ""); line = line.replaceAll(" +$", "");
os.write(line.getBytes(StandardCharsets.ISO_8859_1)); os.write(line.getBytes(StandardCharsets.ISO_8859_1));