mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Prevent quoting next line
This commit is contained in:
parent
9136f61301
commit
f2d73c8fd9
1 changed files with 1 additions and 1 deletions
|
@ -1581,7 +1581,7 @@ public class HtmlHelper {
|
||||||
int start = ssb.getSpanStart(span);
|
int start = ssb.getSpanStart(span);
|
||||||
int end = ssb.getSpanEnd(span);
|
int end = ssb.getSpanEnd(span);
|
||||||
|
|
||||||
for (int i = end - 1; i >= start; i--)
|
for (int i = end - 2; i >= start; i--)
|
||||||
if (ssb.charAt(i) == '\n')
|
if (ssb.charAt(i) == '\n')
|
||||||
if (i + 1 < ssb.length() && ssb.charAt(i + 1) == '>')
|
if (i + 1 < ssb.length() && ssb.charAt(i + 1) == '>')
|
||||||
ssb.insert(i + 1, ">");
|
ssb.insert(i + 1, ">");
|
||||||
|
|
Loading…
Reference in a new issue