Makes the default setting: camera off and mic on

This commit is contained in:
Benedicte Quimbert 2022-03-23 10:37:25 +01:00
parent 4215925141
commit b9ff3425e0

View File

@ -263,6 +263,10 @@ class LocalUserStore {
}
getCameraPrivacySettings() {
//if this setting doesn't exist in LocalUserStore, we set a default value
if (localStorage.getItem(cameraPrivacySettings) == null) {
localStorage.setItem(cameraPrivacySettings, "false");
}
return localStorage.getItem(cameraPrivacySettings) === "true";
}
@ -271,6 +275,10 @@ class LocalUserStore {
}
getMicrophonePrivacySettings() {
//if this setting doesn't exist in LocalUserStore, we set a default value
if (localStorage.getItem(microphonePrivacySettings) == null) {
localStorage.setItem(microphonePrivacySettings, "true");
}
return localStorage.getItem(microphonePrivacySettings) === "true";
}