mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 09:03:56 +02:00
Fixed removing Usenet signature in some cases
This commit is contained in:
@@ -3718,6 +3718,11 @@ public class FragmentCompose extends FragmentBase {
|
||||
remove = true;
|
||||
else {
|
||||
Node next = node.nextSibling();
|
||||
if (next == null) {
|
||||
Node parent = node.parent();
|
||||
if (parent != null)
|
||||
next = parent.nextSibling();
|
||||
}
|
||||
if (next != null && "br".equals(next.nodeName()))
|
||||
remove = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user