WIP: Refactor Aurora (3.0.0) #29
1 changed files with 2 additions and 2 deletions
|
@ -320,9 +320,9 @@ class Moderation(AuroraGuildModel):
|
||||||
if types:
|
if types:
|
||||||
if 'all' in types:
|
if 'all' in types:
|
||||||
types = type_registry.keys()
|
types = type_registry.keys()
|
||||||
|
logger.debug("Getting all types: %s", types)
|
||||||
conditions.append(f"moderation_type IN ({', '.join(['?' for _ in types])})")
|
conditions.append(f"moderation_type IN ({', '.join(['?' for _ in types])})")
|
||||||
for t in types:
|
params.extend([t.key for t in types])
|
||||||
params.append(t)
|
|
||||||
if before:
|
if before:
|
||||||
conditions.append("timestamp < ?")
|
conditions.append("timestamp < ?")
|
||||||
params.append(int(before.timestamp()))
|
params.append(int(before.timestamp()))
|
||||||
|
|
Loading…
Reference in a new issue