aboutsummaryrefslogtreecommitdiff
path: root/common/sanitize_JSON.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/sanitize_JSON.js')
-rw-r--r--common/sanitize_JSON.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/sanitize_JSON.js b/common/sanitize_JSON.js
index 8268d3e..8b86d2d 100644
--- a/common/sanitize_JSON.js
+++ b/common/sanitize_JSON.js
@@ -37,7 +37,7 @@ function sanitize_unknown(schema, item)
let _default = undefined;
if (!Array.isArray(schema) || schema[1] === "matchentry" ||
- schema.length < 2 || !["ordefault", "or"].includes(schema))
+ schema.length < 2 || !["ordefault", "or"].includes(schema[1]))
return sanitize_unknown_no_alternatives(schema, item);
if ((schema.length & 1) !== 1) {