This commit is contained in:
M66B 2024-04-24 11:56:43 +02:00
parent 069064502c
commit 3f106c4d30
1 changed files with 1 additions and 1 deletions

View File

@ -7827,7 +7827,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
info.addAction(new AccessibilityNodeInfo.AccessibilityAction(R.id.ibDelete,
context.getString(R.string.title_trash_selection)));
if (ibMove.getVisibility() == View.VISIBLE && ibMove.isEnabled())
if (ibMove != null && ibMove.getVisibility() == View.VISIBLE && ibMove.isEnabled())
info.addAction(new AccessibilityNodeInfo.AccessibilityAction(R.id.ibMove,
context.getString(R.string.title_move_to)));