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 1681373d88
commit a4234268b2

View File

@ -256,6 +256,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";
}
@ -264,6 +268,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";
}