fix(sdbapi): return empty json from join
1 files changed, 1 insertions(+), 2 deletions(-) M sdbapi/handlers/joingame.go
M sdbapi/handlers/joingame.go => sdbapi/handlers/joingame.go +1 -2
@@ 66,6 66,5 @@ func JoinGame(c *gin.Context) { return } - // return a 20x code - c.JSON(http.StatusNoContent, nil) + c.JSON(http.StatusOK, gin.H{}) }