Merge pull request #325 from RyanRory/fix-keyboard

Fix keyboard not activating correctly in after following a link
pull/1053/head
Morgan Pretty 4 months ago committed by GitHub
commit e6429ecafb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1254,7 +1254,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) {

Loading…
Cancel
Save