Skip to content

Commit

Permalink
WJPC: Sync only non-connected players
Browse files Browse the repository at this point in the history
  • Loading branch information
JanMikes committed Sep 19, 2024
1 parent dc1b448 commit 8563b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Query/GetWjpcParticipants.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function getConnectedParticipants(): array
INNER JOIN
player ON player.id = wjpc_participant.player_id
WHERE
wjpc_participant.player_id IS NOT NULL;
wjpc_participant.player_id IS NOT NULL AND wjpc_participant.remote_id IS NULL;
SQL;

$participants = $this->database
Expand Down

0 comments on commit 8563b9b

Please sign in to comment.