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
627bf6b8c3
commit
474c8d503e
1 changed files with 1 additions and 1 deletions
|
@ -516,7 +516,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
}
|
||||
|
||||
if (broken) {
|
||||
StyleSpan[] sspan = ssb.getSpans(start, start, StyleSpan.class);
|
||||
StyleSpan[] sspan = ssb.getSpans(start + 1, start + 1, StyleSpan.class);
|
||||
for (StyleSpan span : sspan) {
|
||||
int s = ssb.getSpanStart(span);
|
||||
int e = ssb.getSpanEnd(span);
|
||||
|
|
Loading…
Reference in a new issue