You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-17 17:42:41 +03:00
Make blacklistUnverifiedDevices override the level order
Signed-off-by: Travis Ralston <travpc@gmail.com>
This commit is contained in:
@@ -147,9 +147,12 @@ export default React.createClass({
|
||||
return <Spinner />;
|
||||
}
|
||||
|
||||
// The global value is treated as a default for when rooms don't specify a value.
|
||||
const client = MatrixClientPeg.get();
|
||||
const blacklistUnverified = client.getGlobalBlacklistUnverifiedDevices() ||
|
||||
this.props.room.getBlacklistUnverifiedDevices();
|
||||
let blacklistUnverified = client.getGlobalBlacklistUnverifiedDevices();
|
||||
if (this.props.room.getBlacklistUnverifiedDevices() !== null) {
|
||||
blacklistUnverified = this.props.room.getBlacklistUnverifiedDevices();
|
||||
}
|
||||
|
||||
let warning;
|
||||
if (blacklistUnverified) {
|
||||
|
||||
Reference in New Issue
Block a user