1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-04 18:48:31 +00:00

Fixed extra new lines plain text reply

This commit is contained in:
M66B 2020-05-12 17:05:59 +02:00
parent b2d8211a5b
commit 8ea3cfffcf

View file

@ -3380,6 +3380,8 @@ public class FragmentCompose extends FragmentBase {
if (TextUtils.isEmpty(s)) {
// Get referenced message body
d = JsoupEx.parse(ref.getFile(context));
for (Element e : d.select("[x-plain=true]"))
e.removeAttr("x-plain");
// Remove signature separators
boolean remove_signatures = prefs.getBoolean("remove_signatures", false);