Fix hasGameSession
parent
c1ada7f862
commit
c1098bb415
|
@ -47,7 +47,7 @@ func (s *Server) HandleAccountInfo(w http.ResponseWriter, r *http.Request) {
|
|||
|
||||
_, err = os.Stat("userdata/" + hex.EncodeToString(uuid) + "/session.pzs")
|
||||
|
||||
response, err := json.Marshal(AccountInfoResponse{Username: username, HasGameSession: err != nil})
|
||||
response, err := json.Marshal(AccountInfoResponse{Username: username, HasGameSession: err == nil})
|
||||
if err != nil {
|
||||
http.Error(w, fmt.Sprintf("failed to marshal response json: %s", err), http.StatusInternalServerError)
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue