File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
vector/src/main/java/im/vector/app/core/di Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change
1
+ Fix crypto config fallback key sharing strategy
Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ object ConfigurationModule {
77
77
fun providesCryptoConfig () = CryptoConfig (
78
78
fallbackKeySharingStrategy = when (Config .KEY_SHARING_STRATEGY ) {
79
79
KeySharingStrategy .WhenSendingEvent -> OutboundSessionKeySharingStrategy .WhenSendingEvent
80
- KeySharingStrategy .WhenEnteringRoom -> OutboundSessionKeySharingStrategy .WhenSendingEvent
81
- KeySharingStrategy .WhenTyping -> OutboundSessionKeySharingStrategy .WhenSendingEvent
80
+ KeySharingStrategy .WhenEnteringRoom -> OutboundSessionKeySharingStrategy .WhenEnteringRoom
81
+ KeySharingStrategy .WhenTyping -> OutboundSessionKeySharingStrategy .WhenTyping
82
82
}
83
83
)
84
84
You can’t perform that action at this time.
0 commit comments