mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 04:35:57 +00:00
Fixed Usenet signature separator
This commit is contained in:
parent
9b21152db5
commit
4d16fa69bc
1 changed files with 1 additions and 1 deletions
|
@ -1875,7 +1875,7 @@ public class HtmlHelper {
|
|||
if (block.size() > 0) {
|
||||
tnode = block.get(block.size() - 1);
|
||||
text = tnode.getWholeText();
|
||||
if (endsWithWhitespace(text)) {
|
||||
if (!"-- ".equals(text) && endsWithWhitespace(text)) {
|
||||
text = text.substring(0, text.length() - 1);
|
||||
tnode.text(text);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue