From be90efa23d8820ade23046972806d9fdfc53ee66 Mon Sep 17 00:00:00 2001 From: Angelin Scheidweiler <40242801+Ascheidweiler@users.noreply.github.com> Date: Tue, 11 Feb 2025 21:24:18 -0600 Subject: [PATCH] Enable verified subtitle on group chat. Fixes #13873 Resolves #13985 --- .../securesms/conversation/v2/ConversationFragment.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 93e938a41c..3ec11ac4dc 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 @@ -1238,9 +1238,7 @@ class ConversationFragment : } private fun presentIdentityRecordsState(identityRecordsState: IdentityRecordsState) { - if (!identityRecordsState.isGroup) { - binding.conversationTitleView.root.setVerified(identityRecordsState.isVerified) - } + binding.conversationTitleView.root.setVerified(identityRecordsState.isVerified) if (identityRecordsState.isUnverified) { binding.conversationBanner.showUnverifiedBanner(identityRecordsState.identityRecords)