fix(gemini-web): Correct stream translation and reduce auth refresh lead

This commit is contained in:
hkfires
2025-09-23 20:44:51 +08:00
parent 9df04d71e2
commit 73cf491478
2 changed files with 9 additions and 5 deletions

View File

@@ -24,6 +24,6 @@ func (a *GeminiWebAuthenticator) Login(ctx context.Context, cfg *config.Config,
}
func (a *GeminiWebAuthenticator) RefreshLead() *time.Duration {
d := 3 * time.Hour
d := 15 * time.Minute
return &d
}