mirror of
https://github.com/novnc/noVNC.git
synced 2026-05-31 01:19:38 +00:00
Merge pull request #913 from kosmasgiannis/missing_quote
Add missing quotes
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user