From bfa33432764274798e55327c1051dfab55c20083 Mon Sep 17 00:00:00 2001 From: Opaque02 <66582645+Opaque02@users.noreply.github.com> Date: Mon, 28 Oct 2024 11:05:24 +1000 Subject: [PATCH] Added TODO comment for lastLoggedIn json result --- db/account.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/account.go b/db/account.go index 2b88beb..bc4fb5e 100644 --- a/db/account.go +++ b/db/account.go @@ -203,7 +203,7 @@ type AdminSearchResponse struct { Username string `json:"username"` DiscordId string `json:"discordId"` GoogleId string `json:"googleId"` - LastActivity string `json:"lastLoggedIn"` + LastActivity string `json:"lastLoggedIn"` // TODO: this is currently lastLoggedIn to match server PR #54 with pokerogue PR #4198. We're hotfixing the server with this PR to return lastActivity, but we're not hotfixing the client, so are leaving this as lastLoggedIn so that it still talks to the client properly Registered string `json:"registered"` }