We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5368be0 + 7e22d1e commit cafa8f3Copy full SHA for cafa8f3
1 file changed
app/src/main/java/com/nextcloud/talk/chat/ChatActivity.kt
@@ -2600,11 +2600,10 @@ class ChatActivity :
2600
}
2601
if (position != null && position >= 0) {
2602
val layoutManager = binding.messagesListView.layoutManager
2603
- // FIXME Not a perfect offset, but works to clear the pinned message view, try and find a better solution
2604
(layoutManager as LinearLayoutManager).scrollToPositionWithOffset(position, 500)
2605
} else {
2606
Log.d(TAG, "message $messageId that should be scrolled to was not found (scrollToMessageWithId)")
2607
- startContextChatWindowForMessage(messageId, conversationThreadId?.toString())
+ startContextChatWindowForMessage(messageId, currentConversation?.internalId)
2608
2609
2610
0 commit comments