Add support for voice channel parties #33

Closed
wasi-master wants to merge 277 commits from master into 2.0
135 changed files with 7500 additions and 23104 deletions
Showing only changes of commit 994de512cb - Show all commits

View File

@ -17,7 +17,7 @@ class Setting {
let value = JSON.parse(localStorage.getItem(this.name));
this.value = value === null ? this.defaultValue : value;
try {
this.setValue(value);
this.setValue(this.value);
} catch (error) {
console.error(`Failed to apply setting "${this.name}" With value:`, this.value);
console.error(error);