Mark message as read fix

This commit fixes the issue where messages aren't marked as read when you click on them from the InboxActivity.
This commit is contained in:
Bazsalanszky 2024-07-21 13:47:07 +02:00
parent f9a0e0e70d
commit 1303106a7b
No known key found for this signature in database
GPG Key ID: B40814F4EFE23F96

View File

@ -193,7 +193,7 @@ public class MessageRecyclerViewAdapter extends PagedListAdapter<CommentInteract
mActivity.startActivity(intent);
}
if (message.isRead()) {
if (!message.isRead()) {
holder.itemView.setBackgroundColor(mMessageBackgroundColor);