Merge pull request #907 from mpretty-cyro/fix/incorrect-screen-popping

Fixed an issue where the conversation screen was dismissed incorrectly
pull/911/head
Morgan Pretty 2 years ago committed by GitHub
commit 134d257faf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -569,6 +569,10 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
let threadId: String = viewModel.threadData.threadId
if
(
self.navigationController == nil ||
self.navigationController?.viewControllers.contains(self) == false
) &&
viewModel.threadData.threadIsNoteToSelf == false &&
viewModel.threadData.threadShouldBeVisible == false &&
!SessionUtil.conversationInConfig(

Loading…
Cancel
Save