Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/discord-cluster-manager/cogs/admin_cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __init__(self, bot: "ClusterBot"):
name="set-forum-ids", description="Sets forum IDs"
)(self.set_forum_ids)

# self._scheduled_cleanup_temp_users.start()
self._scheduled_cleanup_temp_users.start()

# --------------------------------------------------------------------------
# | HELPER FUNCTIONS |
Expand Down
2 changes: 1 addition & 1 deletion src/discord-cluster-manager/leaderboard_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ def validate_cli_id(self, cli_id: str) -> Optional[dict[str, str]]:
self.cursor.execute(
"""
SELECT id, user_name FROM leaderboard.user_info
WHERE cli_id = %s
WHERE cli_id = %s AND cli_valid = TRUE
""",
(cli_id,),
)
Expand Down
Loading