Prevent NPE

pull/214/head
M66B 7 months ago
parent 42fde96033
commit dec3af18b2

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

Loading…
Cancel
Save