Fix to prevent guests from seeing features
This commit is contained in:
parent
0da187c101
commit
929718b032
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ export default class DeviceSettingsHandler extends SettingsHandler {
|
||||||
_readFeature(featureName) {
|
_readFeature(featureName) {
|
||||||
if (MatrixClientPeg.get() && MatrixClientPeg.get().isGuest()) {
|
if (MatrixClientPeg.get() && MatrixClientPeg.get().isGuest()) {
|
||||||
// Guests should not have any labs features enabled.
|
// Guests should not have any labs features enabled.
|
||||||
return {enabled: false};
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const value = localStorage.getItem("mx_labs_feature_" + featureName);
|
const value = localStorage.getItem("mx_labs_feature_" + featureName);
|
||||||
|
|
Loading…
Reference in a new issue