Send failure verified user : set the room key recipient strategy
This commit is contained in:
parent
e16adb9b85
commit
b245c69322
1 changed files with 1 additions and 4 deletions
|
|
@ -60,9 +60,6 @@ class RustMatrixClientFactory @Inject constructor(
|
|||
.homeserverUrl(sessionData.homeserverUrl)
|
||||
.username(sessionData.userId)
|
||||
.setSessionDelegate(sessionDelegate)
|
||||
.roomKeyRecipientStrategy(
|
||||
strategy = CollectStrategy.DeviceBasedStrategy(false, true)
|
||||
)
|
||||
.use { it.build() }
|
||||
|
||||
client.restoreSession(sessionData.toSession())
|
||||
|
|
@ -115,7 +112,7 @@ class RustMatrixClientFactory @Inject constructor(
|
|||
strategy = if (featureFlagService.isFeatureEnabled(FeatureFlags.InvisibleCrypto)) {
|
||||
CollectStrategy.IdentityBasedStrategy
|
||||
} else {
|
||||
CollectStrategy.DeviceBasedStrategy(onlyAllowTrustedDevices = false, errorOnVerifiedUserProblem = false)
|
||||
CollectStrategy.DeviceBasedStrategy(onlyAllowTrustedDevices = false, errorOnVerifiedUserProblem = true)
|
||||
}
|
||||
)
|
||||
.run {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue