Use the constructed value in the settings

This commit is contained in:
Rapptz
2020-12-18 21:18:57 -05:00
parent 185796128b
commit 7cc95d9dac
+1 -1
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);