You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
Hide e2e features if not enabled
Don't show the device info in the MemberInfo and UserSettings unless the user has ticked the 'labs' box.
This commit is contained in:
@@ -258,6 +258,10 @@ module.exports = React.createClass({
|
||||
},
|
||||
|
||||
_renderDeviceInfo: function() {
|
||||
if (!UserSettingsStore.isFeatureEnabled("e2e_encryption")) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var client = MatrixClientPeg.get();
|
||||
var deviceId = client.deviceId;
|
||||
var olmKey = client.getDeviceEd25519Key() || "<not supported>";
|
||||
|
||||
Reference in New Issue
Block a user