fix: show players if they're not disabled

This commit is contained in:
julius 2025-03-24 22:37:59 +01:00
parent fc8592f8ab
commit 19ae4a18ca
Signed by: julius
GPG Key ID: C80A63E6A5FD7092

View File

@ -150,7 +150,7 @@ async def list_players(team_id: int):
select(P)
.join(PlayerTeamLink)
.join(Team)
.where(Team.id == team_id, P.disabled == False)
.where(Team.id == team_id, P.disabled != True)
).all()
if players:
return [