The condition on line 181-183 of match.go uses || instead of &&. This means a user is blocked if they are not a participant OR not tournament staff — effectively requiring both. Should be AND so either condition grants access.
app/v1/match.go, lines 181-183
The condition on line 181-183 of match.go uses
||instead of&&. This means a user is blocked if they are not a participant OR not tournament staff — effectively requiring both. Should be AND so either condition grants access.app/v1/match.go, lines 181-183