mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Prevent crash
This commit is contained in:
parent
8bb9ef1324
commit
f90e0db428
1 changed files with 2 additions and 1 deletions
|
@ -1588,7 +1588,8 @@ public class HtmlHelper {
|
||||||
else
|
else
|
||||||
ssb.insert(i + 1, "> ");
|
ssb.insert(i + 1, "> ");
|
||||||
|
|
||||||
ssb.insert(start, ssb.charAt(start) == '>' ? ">" : "> ");
|
if (start < ssb.length())
|
||||||
|
ssb.insert(start, ssb.charAt(start) == '>' ? ">" : "> ");
|
||||||
}
|
}
|
||||||
|
|
||||||
for (BulletSpan span : ssb.getSpans(0, ssb.length(), BulletSpan.class)) {
|
for (BulletSpan span : ssb.getSpans(0, ssb.length(), BulletSpan.class)) {
|
||||||
|
|
Loading…
Reference in a new issue