mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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
|
@ -200,8 +200,8 @@ local function validate(schema : schema_t | type_e | boolean, data : any) : bool
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
if schema.enum ~= nil then
|
if schema["enum"] ~= nil then
|
||||||
for _, v in ipairs(schema.enum) do
|
for _, v in ipairs(schema["enum"]) do
|
||||||
if v == data then
|
if v == data then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
|
@ -118,8 +118,8 @@ local function validate(schema, data)
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
if schema.enum ~= nil then
|
if schema["enum"] ~= nil then
|
||||||
for _, v in ipairs(schema.enum) do
|
for _, v in ipairs(schema["enum"]) do
|
||||||
if v == data then
|
if v == data then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue