The condition uses || (OR) when it should use && (AND). As written, a user is denied if they are NOT a participant OR NOT tournament staff. This means even participants without tournament staff privilege get blocked. Should only deny if the user is neither.
app/handlers/multiplayer/multiplayer.go, lines 96-98
The condition uses || (OR) when it should use && (AND). As written, a user is denied if they are NOT a participant OR NOT tournament staff. This means even participants without tournament staff privilege get blocked. Should only deny if the user is neither.
app/handlers/multiplayer/multiplayer.go, lines 96-98