Fix hasGameSession

pull/1/head
maru 9 months ago
parent c1ada7f862
commit c1098bb415
No known key found for this signature in database
GPG Key ID: 37689350E9CD0F0D

@ -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…
Cancel
Save