diff options
-rw-r--r-- | bot/exts/recruitment/talentpool/_review.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/recruitment/talentpool/_review.py b/bot/exts/recruitment/talentpool/_review.py index b99d91c5f..f46e565ed 100644 --- a/bot/exts/recruitment/talentpool/_review.py +++ b/bot/exts/recruitment/talentpool/_review.py @@ -154,7 +154,7 @@ class Reviewer: # ... and is for a user that has been active recently self.is_user_active_enough(user_message_count) and # ... and is currently a member of the server - await get_or_fetch_member(guild, nomination.id) is not None + await get_or_fetch_member(guild, nomination.user_id) is not None ) async def sort_nominations_to_review(self, nominations: list[Nomination], now: datetime) -> list[Nomination]: |