mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
Prevent exception
This commit is contained in:
parent
008469569e
commit
f3558b28aa
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ public class EditTextMultiAutoComplete extends AppCompatMultiAutoCompleteTextVie
|
|||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
if (edit == null)
|
||||
if (edit == null || backspace == null)
|
||||
return;
|
||||
ClipImageSpan[] spans = edit.getSpans(backspace, backspace, ClipImageSpan.class);
|
||||
if (spans.length == 1) {
|
||||
|
|
Loading…
Reference in a new issue