Pārlūkot izejas kodu

trivial formatting change to test checks
Signed-off-by: Julius Linus julius.linus@nextcloud.com

rapterjet2004 1 gadu atpakaļ
vecāks
revīzija
42c55cd5ac

+ 9 - 8
app/src/main/java/com/nextcloud/talk/ui/dialog/FilterConversationFragment.kt

@@ -145,14 +145,15 @@ class FilterConversationFragment(
         for ((k, v) in filterState) {
             if (v) {
                 when (k) {
-                    MENTION -> result = (result && conversation.unreadMention) || (
-                        result &&
-                            (
-                                conversation.type == Conversation.ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL ||
-                                    conversation.type == Conversation.ConversationType.FORMER_ONE_TO_ONE
-                                ) &&
-                            (conversation.unreadMessages > 0)
-                        )
+                    MENTION -> result = (result && conversation.unreadMention) ||
+                        (
+                            result &&
+                                (
+                                    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)
                 }
             }