mirror of https://github.com/M66B/FairEmail.git
Prevent NPE
This commit is contained in:
parent
42fde96033
commit
dec3af18b2
|
@ -3977,6 +3977,8 @@ public class HtmlHelper {
|
|||
}
|
||||
|
||||
static void clearComposingText(TextView view) {
|
||||
if (view == null)
|
||||
return;
|
||||
view.clearComposingText();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue