Fix prune

This commit is contained in:
Madeline 2022-12-03 22:58:29 +11:00
parent 72faa449e0
commit 9710d74541

View File

@ -27,12 +27,12 @@ export const inactiveMembers = async (
last_message_id: LessThan(minId.toString()), last_message_id: LessThan(minId.toString()),
}, },
{ {
guild_id,
last_message_id: IsNull(), last_message_id: IsNull(),
}, },
], ],
relations: ["roles"], relations: ["roles"],
}); });
console.log(members);
if (!members.length) return []; 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. //I'm sure I can do this in the above db query ( and it would probably be better to do so ), but oh well.