mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
don't show e2e icon in unencrypted rooms upon loading the room
This commit is contained in:
parent
ce5e56aaac
commit
e55dbfc6fe
@ -738,9 +738,6 @@ module.exports = React.createClass({
|
||||
|
||||
onDeviceVerificationChanged: function(userId, device) {
|
||||
const room = this.state.room;
|
||||
if (!MatrixClientPeg.get().isRoomEncrypted(room.roomId)) {
|
||||
return;
|
||||
}
|
||||
if (!room.currentState.getMember(userId)) {
|
||||
return;
|
||||
}
|
||||
@ -748,6 +745,9 @@ module.exports = React.createClass({
|
||||
},
|
||||
|
||||
_updateE2EStatus: function(room) {
|
||||
if (!MatrixClientPeg.get().isRoomEncrypted(room.roomId)) {
|
||||
return;
|
||||
}
|
||||
room.hasUnverifiedDevices().then((hasUnverifiedDevices) => {
|
||||
this.setState({e2eStatus: hasUnverifiedDevices ? "warning" : "verified"});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user