mirror of https://github.com/M66B/FairEmail.git
Fixed Usenet signature separator
This commit is contained in:
parent
9b21152db5
commit
4d16fa69bc
|
@ -1875,7 +1875,7 @@ public class HtmlHelper {
|
||||||
if (block.size() > 0) {
|
if (block.size() > 0) {
|
||||||
tnode = block.get(block.size() - 1);
|
tnode = block.get(block.size() - 1);
|
||||||
text = tnode.getWholeText();
|
text = tnode.getWholeText();
|
||||||
if (endsWithWhitespace(text)) {
|
if (!"-- ".equals(text) && endsWithWhitespace(text)) {
|
||||||
text = text.substring(0, text.length() - 1);
|
text = text.substring(0, text.length() - 1);
|
||||||
tnode.text(text);
|
tnode.text(text);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue