Attach an onChange listener to the room's blacklist devices option
Fixes https://github.com/vector-im/riot-web/issues/9235 The global option in user settings is unaffected by this bug. Users who have previously set the per-room flag without success can simply refresh the page and the change will be picked up. The bug here is that the current session would not update accordingly, however. Introduced in https://github.com/matrix-org/matrix-react-sdk/pull/2523
This commit is contained in:
parent
140e0d6a30
commit
50614fa7fb
1 changed files with 5 additions and 0 deletions
|
@ -197,6 +197,10 @@ export default class SecurityRoomSettingsTab extends React.Component {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
_updateBlacklistDevicesFlag = (checked) => {
|
||||||
|
MatrixClientPeg.get().getRoom(this.props.roomId).setBlacklistUnverifiedDevices(checked);
|
||||||
|
};
|
||||||
|
|
||||||
_renderRoomAccess() {
|
_renderRoomAccess() {
|
||||||
const client = MatrixClientPeg.get();
|
const client = MatrixClientPeg.get();
|
||||||
const room = client.getRoom(this.props.roomId);
|
const room = client.getRoom(this.props.roomId);
|
||||||
|
@ -318,6 +322,7 @@ export default class SecurityRoomSettingsTab extends React.Component {
|
||||||
let encryptionSettings = null;
|
let encryptionSettings = null;
|
||||||
if (isEncrypted) {
|
if (isEncrypted) {
|
||||||
encryptionSettings = <SettingsFlag name="blacklistUnverifiedDevices" level={SettingLevel.ROOM_DEVICE}
|
encryptionSettings = <SettingsFlag name="blacklistUnverifiedDevices" level={SettingLevel.ROOM_DEVICE}
|
||||||
|
onChange={this._updateBlacklistDevicesFlag}
|
||||||
roomId={this.props.roomId} />;
|
roomId={this.props.roomId} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue