From a3a208b38e10ae8f9153e91b1017829f757f82be Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 4 May 2024 17:12:35 -0400 Subject: [PATCH] fix(aurora): fixed an incorrect function call in Moderation.from_sql() --- aurora/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/models.py b/aurora/models.py index 8409ee2..e9f0ca0 100644 --- a/aurora/models.py +++ b/aurora/models.py @@ -66,7 +66,7 @@ class Moderation(AuroraBaseModel): result = cursor.fetchone() if result: - case = generate_dict(result) + case = generate_dict(result, guild_id) cursor.close() return cls.from_dict(bot, case)