mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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.
This commit is contained in:
parent
1317e78fbb
commit
44edd47ca8
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue