|
@@ -147,7 +147,10 @@ class FilterConversationFragment(
|
|
|
when (k) {
|
|
|
MENTION -> result = (result && conversation.unreadMention) || (
|
|
|
result &&
|
|
|
- (conversation.type == Conversation.ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL) &&
|
|
|
+ (
|
|
|
+ conversation.type == Conversation.ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL ||
|
|
|
+ conversation.type == Conversation.ConversationType.FORMER_ONE_TO_ONE
|
|
|
+ ) &&
|
|
|
(conversation.unreadMessages > 0)
|
|
|
)
|
|
|
UNREAD -> result = result && (conversation.unreadMessages > 0)
|