Allow opting out of key transparency.

This commit is contained in:
Michelle Tang
2026-01-30 13:48:01 -05:00
committed by Greyson Parrelli
parent 423b8c942c
commit a11888ff71
11 changed files with 98 additions and 5 deletions

View File

@@ -1418,7 +1418,7 @@ class ConversationFragment :
}
private fun presentVerifyAutomaticallySheet() {
if (RemoteConfig.keyTransparency && !SignalStore.uiHints.hasSeenVerifyAutomaticallySheet() && viewModel.recipientSnapshot?.isIndividual == true) {
if (RemoteConfig.keyTransparency && SignalStore.settings.automaticVerificationEnabled && !SignalStore.uiHints.hasSeenVerifyAutomaticallySheet() && viewModel.recipientSnapshot?.isIndividual == true) {
VerifyAutomaticallyEducationSheet.show(parentFragmentManager)
}
}