mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 19:53:51 +01:00
Fix typo in validator
This commit is contained in:
parent
339c11dd86
commit
2cdff00788
1 changed files with 8 additions and 2 deletions
|
@ -70,12 +70,18 @@ class EventValidator(object):
|
||||||
|
|
||||||
if type(content[key]) == dict:
|
if type(content[key]) == dict:
|
||||||
# we must go deeper
|
# we must go deeper
|
||||||
msg = self._check_json(content[key], template[key])
|
msg = self._check_json_template(
|
||||||
|
content[key],
|
||||||
|
template[key]
|
||||||
|
)
|
||||||
if msg:
|
if msg:
|
||||||
return msg
|
return msg
|
||||||
elif type(content[key]) == list:
|
elif type(content[key]) == list:
|
||||||
# make sure each item type in content matches the template
|
# make sure each item type in content matches the template
|
||||||
for entry in content[key]:
|
for entry in content[key]:
|
||||||
msg = self._check_json(entry, template[key][0])
|
msg = self._check_json_template(
|
||||||
|
entry,
|
||||||
|
template[key][0]
|
||||||
|
)
|
||||||
if msg:
|
if msg:
|
||||||
return msg
|
return msg
|
Loading…
Reference in a new issue