From eb533b2b009a5afecc8f1817e359c7f09cfc8ef7 Mon Sep 17 00:00:00 2001 From: Giannis Kosmas Date: Fri, 6 Oct 2017 14:15:22 +0300 Subject: [PATCH] Add missing quotes --- app/webutil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/webutil.js b/app/webutil.js index 1f28b211..dabc97c7 100644 --- a/app/webutil.js +++ b/app/webutil.js @@ -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;