Add missing quotes
This commit is contained in:
parent
9ea566225a
commit
eb533b2b00
@ -153,7 +153,7 @@ export function readSetting (name, defaultValue) {
|
||||
if (typeof value === "undefined") {
|
||||
value = null;
|
||||
}
|
||||
if (value === null && typeof defaultValue !== undefined) {
|
||||
if (value === null && typeof defaultValue !== "undefined") {
|
||||
return defaultValue;
|
||||
} else {
|
||||
return value;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user