From 6744a793258b41eb7d9af6de2400472f0e803ca1 Mon Sep 17 00:00:00 2001 From: Michelle Tang Date: Wed, 4 Feb 2026 16:21:16 -0500 Subject: [PATCH] Avoid showing KT for note to self. --- .../securesms/conversation/v2/ConversationFragment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/conversation/v2/ConversationFragment.kt b/app/src/main/java/org/thoughtcrime/securesms/conversation/v2/ConversationFragment.kt index 8ea78e1a11..5cf4741299 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/conversation/v2/ConversationFragment.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/conversation/v2/ConversationFragment.kt @@ -1447,7 +1447,7 @@ class ConversationFragment : private fun presentIdentityRecordsState(identityRecordsState: IdentityRecordsState) { binding.conversationTitleView.root.setVerified(identityRecordsState.isVerified) - if (RemoteConfig.internalUser && SignalStore.settings.automaticVerificationEnabled && !SignalStore.uiHints.hasSeenVerifyAutomaticallySheet() && viewModel.recipientSnapshot?.isIndividual == true) { + if (RemoteConfig.internalUser && SignalStore.settings.automaticVerificationEnabled && !SignalStore.uiHints.hasSeenVerifyAutomaticallySheet() && viewModel.recipientSnapshot?.isIndividual == true && viewModel.recipientSnapshot?.isSelf == false) { VerifyAutomaticallyEducationSheet.show(parentFragmentManager) parentFragmentManager.setFragmentResultListener(VerifyAutomaticallyEducationSheet.RESULT_KEY, requireActivity()) { _, bundle ->