fix(aurora): hopefully actually fixed the pydantic validation error

This commit is contained in:
Seaswimmer 2024-05-24 04:01:15 -04:00
parent 0b1d1d29e6
commit c90796f6b3
Signed by untrusted user: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -176,9 +176,13 @@ class Moderation(AuroraGuildModel):
if changes:
for change in changes:
change_obj_list.append(Change.from_dict(bot=bot, data=change))
else:
change_obj_list = []
if result[15] is not None:
metadata = json.loads(result[15])
else:
metadata = {}
case = {
"moderation_id": int(result[0]),
@ -196,8 +200,8 @@ class Moderation(AuroraGuildModel):
"resolved_by": result[11],
"resolve_reason": result[12],
"expired": bool(result[13]),
"changes": change_obj_list if result[14] else [],
"metadata": metadata if result[15] else {},
"changes": change_obj_list,
"metadata": metadata,
}
return cls.from_dict(bot=bot, data=case)