Prevent NPE

This commit is contained in:
M66B
2023-11-30 19:22:41 +01:00
parent 42fde96033
commit dec3af18b2

View File

@@ -3977,6 +3977,8 @@ public class HtmlHelper {
}
static void clearComposingText(TextView view) {
if (view == null)
return;
view.clearComposingText();
}