Browse Source

ktlint Format

Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
sowjanyakch 6 months ago
parent
commit
082669a3bf
1 changed files with 8 additions and 13 deletions
  1. 8 13
      app/src/main/java/com/nextcloud/talk/chat/ChatActivity.kt

+ 8 - 13
app/src/main/java/com/nextcloud/talk/chat/ChatActivity.kt

@@ -2546,19 +2546,14 @@ class ChatActivity :
 
     private fun isScrolledToBottom() = layoutManager?.findFirstVisibleItemPosition() == 0
 
-    private fun shouldInsertNewMessagesNotice(
-        newMessagesAvailable: Boolean,
-        chatMessageList: List<ChatMessage>
-    ) = if (newMessagesAvailable) {
-        chatMessageList.any { it.actorId != conversationUser!!.userId }
-    } else {
-        false
-    }
-
-    private fun updateUnreadMessageInfos(
-        chatMessageList: List<ChatMessage>,
-        scrollToEndOnUpdate: Boolean
-    ) {
+    private fun shouldInsertNewMessagesNotice(newMessagesAvailable: Boolean, chatMessageList: List<ChatMessage>) =
+        if (newMessagesAvailable) {
+            chatMessageList.any { it.actorId != conversationUser!!.userId }
+        } else {
+            false
+        }
+
+    private fun updateUnreadMessageInfos(chatMessageList: List<ChatMessage>, scrollToEndOnUpdate: Boolean) {
         val unreadChatMessage = ChatMessage()
         unreadChatMessage.jsonMessageId = -1
         unreadChatMessage.actorId = "-1"