From 6f28c579c8a52e5c89d5b3af50b278d52b851eae Mon Sep 17 00:00:00 2001 From: Frederico Santos Date: Sat, 22 Jun 2024 20:48:50 +0100 Subject: [PATCH] chore: Handle session out of date errors in savedata API --- api/endpoints.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/api/endpoints.go b/api/endpoints.go index 1622484..7e91074 100644 --- a/api/endpoints.go +++ b/api/endpoints.go @@ -313,8 +313,11 @@ func handleUpdateAll(w http.ResponseWriter, r *http.Request) { } existingPlaytime, err := db.RetrievePlaytime(uuid) - playtime := data.System.GameStats.(map[string]interface{})["playTime"].(float64) if err == nil { + playtime, ok := data.System.GameStats.(map[string]interface{})["playTime"].(float64) + if !ok { + httpError(w, r, fmt.Errorf("no playtime found"), http.StatusBadRequest) + } if float64(existingPlaytime) > playtime { httpError(w, r, fmt.Errorf("session out of date: existing playtime is greater"), http.StatusBadRequest) return @@ -404,8 +407,11 @@ func handleSystem(w http.ResponseWriter, r *http.Request) { } existingPlaytime, err := db.RetrievePlaytime(uuid) - playtime := system.GameStats.(map[string]interface{})["playTime"].(float64) if err == nil { + playtime, ok := system.GameStats.(map[string]interface{})["playTime"].(float64) + if !ok { + httpError(w, r, fmt.Errorf("no playtime found"), http.StatusBadRequest) + } if float64(existingPlaytime) > playtime { httpError(w, r, fmt.Errorf("session out of date: existing playtime is greater"), http.StatusBadRequest) return