rename invisible flag to onlySignedDeviceIsolation
This commit is contained in:
parent
87b512abc3
commit
5459e02043
2 changed files with 4 additions and 4 deletions
|
|
@ -123,9 +123,9 @@ enum class FeatureFlags(
|
||||||
defaultValue = { true },
|
defaultValue = { true },
|
||||||
isFinished = false,
|
isFinished = false,
|
||||||
),
|
),
|
||||||
InvisibleCrypto(
|
OnlySignedDeviceIsolationMode(
|
||||||
key = "feature.invisibleCrypto",
|
key = "feature.onlySignedDeviceIsolationMode",
|
||||||
title = "Invisible Crypto",
|
title = "Exclude not secure devices when sending/receiving messages",
|
||||||
description = "This setting controls how end-to-end encryption (E2E) keys are shared." +
|
description = "This setting controls how end-to-end encryption (E2E) keys are shared." +
|
||||||
" Enabling it will prevent the inclusion of devices that have not been explicitly verified by their owners." +
|
" Enabling it will prevent the inclusion of devices that have not been explicitly verified by their owners." +
|
||||||
" You'll have to stop and re-open the app manually for that setting to take effect.",
|
" You'll have to stop and re-open the app manually for that setting to take effect.",
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@ class RustMatrixClientFactory @Inject constructor(
|
||||||
.autoEnableBackups(true)
|
.autoEnableBackups(true)
|
||||||
.autoEnableCrossSigning(true)
|
.autoEnableCrossSigning(true)
|
||||||
.roomKeyRecipientStrategy(
|
.roomKeyRecipientStrategy(
|
||||||
strategy = if (featureFlagService.isFeatureEnabled(FeatureFlags.InvisibleCrypto)) {
|
strategy = if (featureFlagService.isFeatureEnabled(FeatureFlags.OnlySignedDeviceIsolationMode)) {
|
||||||
CollectStrategy.IdentityBasedStrategy
|
CollectStrategy.IdentityBasedStrategy
|
||||||
} else {
|
} else {
|
||||||
CollectStrategy.DeviceBasedStrategy(onlyAllowTrustedDevices = false, errorOnVerifiedUserProblem = true)
|
CollectStrategy.DeviceBasedStrategy(onlyAllowTrustedDevices = false, errorOnVerifiedUserProblem = true)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue