From 9a03f7ec5ce89eda55250db80e8aa8e18ba76392 Mon Sep 17 00:00:00 2001 From: Up Date: Wed, 8 May 2024 01:11:51 +0200 Subject: [PATCH] fallback if there is no slot data yet --- api/account/info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/account/info.go b/api/account/info.go index f0415d6..868d17b 100644 --- a/api/account/info.go +++ b/api/account/info.go @@ -33,7 +33,7 @@ func Info(username string, uuid []byte) (InfoResponse, error) { slot, err := db.GetLatestSessionSaveDataSlot(uuid) if err != nil { - return response, err + response.LastSessionSlot = -1 } if slot >= defs.SessionSlotCount {