Possible fix rare crash when swipe to reply

This commit is contained in:
Arne 2024-04-07 12:04:05 +02:00
parent 6bd0953670
commit 64d371ae69

View file

@ -1720,7 +1720,7 @@ public class MessageAdapter extends ArrayAdapter<Message> {
public void onOpen(SwipeLayout layout) {
swipeLayout.refreshDrawableState();
//when the BottomView totally show.
MessageAdapter.this.mOnMessageBoxSwipedListener.onContactPictureClicked(message);
if (mOnMessageBoxSwipedListener != null) mOnMessageBoxSwipedListener.onContactPictureClicked(message);
swipeLayout.close(true);
swipeLayout.setClickToClose(true);
}