Prevent crash

This commit is contained in:
M66B
2022-04-23 09:56:48 +02:00
parent 2d57e07682
commit 13773c97c7
8 changed files with 27 additions and 0 deletions

View File

@@ -634,6 +634,9 @@ public class FragmentRule extends FragmentBase {
@Override
public void afterTextChanged(Editable s) {
if (cbResend == null)
return;
cbResend.setEnabled(!TextUtils.isEmpty(s.toString()));
}
});