diff options
author | Kim Alvefur <zash@zash.se> | 2021-03-09 14:22:33 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-03-09 14:22:33 +0100 |
commit | 44edd47ca85307e1e4886aea59197c2ccec6f47c (patch) | |
tree | 8b1f19a43457bda3e8cae056b6affaeb0737cf1a /util | |
parent | 1317e78fbb50d585d3f0aa55262690db8c096026 (diff) | |
download | prosody-44edd47ca85307e1e4886aea59197c2ccec6f47c.tar.gz prosody-44edd47ca85307e1e4886aea59197c2ccec6f47c.zip |
util.jsonschema: Syntax tweak to not upset syntax highlighting
That whole condition stanza was shown as angry red, I think it's
something with 'enum' being a key word in Teal.
Diffstat (limited to 'util')
-rw-r--r-- | util/jsonschema.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/jsonschema.lua b/util/jsonschema.lua index 0723a45e..ed8c0ccc 100644 --- a/util/jsonschema.lua +++ b/util/jsonschema.lua @@ -118,8 +118,8 @@ local function validate(schema, data) return false end - if schema.enum ~= nil then - for _, v in ipairs(schema.enum) do + if schema["enum"] ~= nil then + for _, v in ipairs(schema["enum"]) do if v == data then return true end |