From 19b10cb89442762a597de04cbaf22a341cbf6fa8 Mon Sep 17 00:00:00 2001 From: hkfires <10558748+hkfires@users.noreply.github.com> Date: Sun, 28 Sep 2025 08:40:32 +0800 Subject: [PATCH] feat(sdk/auth): extend Gemini Web refresh lead to 1 hour --- sdk/auth/gemini-web.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/auth/gemini-web.go b/sdk/auth/gemini-web.go index 3b2cdb2c..c56bc969 100644 --- a/sdk/auth/gemini-web.go +++ b/sdk/auth/gemini-web.go @@ -24,6 +24,6 @@ func (a *GeminiWebAuthenticator) Login(ctx context.Context, cfg *config.Config, } func (a *GeminiWebAuthenticator) RefreshLead() *time.Duration { - d := 15 * time.Minute + d := time.Hour return &d }