don't show e2e icon in unencrypted rooms upon loading the room
							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
	
	 Bruno Windels
						Bruno Windels