fix(gemini-web): Correct inaccurate cookie refresh log message

This commit is contained in:
hkfires
2025-09-18 12:35:39 +08:00
parent 1b2e3dc7af
commit bb6ec7ca81

View File

@@ -182,9 +182,9 @@ func (c *GeminiClient) startAutoRefresh() {
} }
if c.accountLabel != "" { if c.accountLabel != "" {
DebugRaw("Cookies and token refreshed [%s]. New __Secure-1PSIDTS: %s", c.accountLabel, MaskToken28(nextCookies["__Secure-1PSIDTS"])) DebugRaw("Cookies refreshed [%s]. New __Secure-1PSIDTS: %s", c.accountLabel, MaskToken28(nextCookies["__Secure-1PSIDTS"]))
} else { } else {
DebugRaw("Cookies and token refreshed. New __Secure-1PSIDTS: %s", MaskToken28(nextCookies["__Secure-1PSIDTS"])) DebugRaw("Cookies refreshed. New __Secure-1PSIDTS: %s", MaskToken28(nextCookies["__Secure-1PSIDTS"]))
} }
} }
} }