mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-26 08:51:32 +02:00
Merge pull request #3837 from matrix-org/dbkr/dont_error_on_unknown_devices
Don't error on unverified/unknown devices.
This commit is contained in:
commit
fa174512cc
@ -1505,6 +1505,15 @@ export default createReactClass({
|
|||||||
"blacklistUnverifiedDevices",
|
"blacklistUnverifiedDevices",
|
||||||
);
|
);
|
||||||
cli.setGlobalBlacklistUnverifiedDevices(blacklistEnabled);
|
cli.setGlobalBlacklistUnverifiedDevices(blacklistEnabled);
|
||||||
|
|
||||||
|
// With cross-signing enabled, we send to unknown devices
|
||||||
|
// without prompting. Any bad-device status the user should
|
||||||
|
// be aware of will be signalled through the room shield
|
||||||
|
// changing colour. More advanced behaviour will come once
|
||||||
|
// we implement more settings.
|
||||||
|
cli.setGlobalErrorOnUnknownDevices(
|
||||||
|
!SettingsStore.isFeatureEnabled("feature_cross_signing"),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user