mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-09 02:23:38 +02:00
Prevent quoting next line
This commit is contained in:
@@ -1581,7 +1581,7 @@ public class HtmlHelper {
|
||||
int start = ssb.getSpanStart(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 (i + 1 < ssb.length() && ssb.charAt(i + 1) == '>')
|
||||
ssb.insert(i + 1, ">");
|
||||
|
||||
Reference in New Issue
Block a user