mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-28 03:46:00 +01:00
Prevent crash
This commit is contained in:
@@ -164,7 +164,16 @@ public class EditTextMultiAutoComplete extends AppCompatMultiAutoCompleteTextVie
|
||||
int off = Helper.getOffset(this, edit, event);
|
||||
ClipImageSpan[] spans = edit.getSpans(off, off, ClipImageSpan.class);
|
||||
if (spans.length == 1)
|
||||
edit.removeSpan(spans[0]);
|
||||
post(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
edit.removeSpan(spans[0]);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
|
||||
Reference in New Issue
Block a user