Prevent NPE

This commit is contained in:
M66B 2023-11-30 19:22:41 +01:00
parent 42fde96033
commit dec3af18b2
1 changed files with 2 additions and 0 deletions

View File

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