diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-03 22:58:29 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-03 22:58:29 +1100 |
commit | cf95510eb91bc89a7d0a282ad27916f3ea213b7e (patch) | |
tree | 2293afe784219f62c30da0ef5459f6e7d94a8ca2 | |
parent | Await some rabbitmq methods, don't reset some config values on start (diff) | |
download | server-cf95510eb91bc89a7d0a282ad27916f3ea213b7e.tar.xz |
Fix prune
-rw-r--r-- | src/api/routes/guilds/#guild_id/prune.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/guilds/#guild_id/prune.ts b/src/api/routes/guilds/#guild_id/prune.ts index d11244b1..8089ad84 100644 --- a/src/api/routes/guilds/#guild_id/prune.ts +++ b/src/api/routes/guilds/#guild_id/prune.ts @@ -27,12 +27,12 @@ export const inactiveMembers = async ( last_message_id: LessThan(minId.toString()), }, { + guild_id, last_message_id: IsNull(), }, ], relations: ["roles"], }); - console.log(members); if (!members.length) return []; //I'm sure I can do this in the above db query ( and it would probably be better to do so ), but oh well. |