Merge pull request from matrix-org/t3chguy/fix_e2ee_toggle

Fix create room dialog e2ee private room setting
pull/21833/head
Michael Telatynski 2020-04-14 13:17:31 +01:00 committed by GitHub
commit 6416f404c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
src/components/views/dialogs

View File

@ -66,7 +66,7 @@ export default createReactClass({
} }
if (!this.state.isPublic && SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (!this.state.isPublic && SettingsStore.isFeatureEnabled("feature_cross_signing")) {
createOpts.encryption = this.state.isEncrypted; opts.encryption = this.state.isEncrypted;
} }
return opts; return opts;