From 5b6d7e8321f930cbbbb8b44181634c6b2d8b8166 Mon Sep 17 00:00:00 2001 From: Ryan ZHAO <> Date: Wed, 27 Nov 2024 10:06:23 +1100 Subject: [PATCH] fix an issue of keyboard not activating correctly in after following a link --- Session/Conversations/ConversationVC+Interaction.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Session/Conversations/ConversationVC+Interaction.swift b/Session/Conversations/ConversationVC+Interaction.swift index ba1669fcb..d900174c7 100644 --- a/Session/Conversations/ConversationVC+Interaction.swift +++ b/Session/Conversations/ConversationVC+Interaction.swift @@ -1244,7 +1244,9 @@ extension ConversationVC: ) ) - self.present(modal, animated: true) + self.present(modal, animated: true) { [weak self] in + self?.hideInputAccessoryView() + } } func handleReplyButtonTapped(for cellViewModel: MessageViewModel, using dependencies: Dependencies) {