mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 02:15:35 +03:00
Merge pull request #8541 from abaker/fix_fallback_key_sharing_strategy
Fix fallbackKeySharingStrategy
This commit is contained in:
commit
4af2f700f7
2 changed files with 3 additions and 2 deletions
1
changelog.d/8541.bugfix
Normal file
1
changelog.d/8541.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix crypto config fallback key sharing strategy
|
|
@ -77,8 +77,8 @@ object ConfigurationModule {
|
|||
fun providesCryptoConfig() = CryptoConfig(
|
||||
fallbackKeySharingStrategy = when (Config.KEY_SHARING_STRATEGY) {
|
||||
KeySharingStrategy.WhenSendingEvent -> OutboundSessionKeySharingStrategy.WhenSendingEvent
|
||||
KeySharingStrategy.WhenEnteringRoom -> OutboundSessionKeySharingStrategy.WhenSendingEvent
|
||||
KeySharingStrategy.WhenTyping -> OutboundSessionKeySharingStrategy.WhenSendingEvent
|
||||
KeySharingStrategy.WhenEnteringRoom -> OutboundSessionKeySharingStrategy.WhenEnteringRoom
|
||||
KeySharingStrategy.WhenTyping -> OutboundSessionKeySharingStrategy.WhenTyping
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue