Skip to content

Commit

Permalink
Fix #926
Browse files Browse the repository at this point in the history
  • Loading branch information
moezbhatti committed Mar 9, 2018
1 parent b15568c commit 7e2b4e9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ class ConversationsAdapter @Inject constructor(

override fun areContentsTheSame(old: InboxItem, new: InboxItem): Boolean {
return old.message.id == new.message.id &&
old.message.read == new.message.read
old.message.read == new.message.read &&
old.conversation.recipients == new.conversation.recipients
}
}

0 comments on commit 7e2b4e9

Please sign in to comment.