mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
Small DelSp improvement
This commit is contained in:
parent
a92d5f6244
commit
c56dd9a648
1 changed files with 1 additions and 1 deletions
|
@ -1899,7 +1899,7 @@ public class HtmlHelper {
|
|||
String line = lines[l];
|
||||
lines[l] = null;
|
||||
|
||||
if (delsp && line.length() > 0)
|
||||
if (delsp && line.endsWith(" "))
|
||||
line = line.substring(0, line.length() - 1);
|
||||
|
||||
if (continuation)
|
||||
|
|
Loading…
Reference in a new issue