From 5506071e9a0808fb5c790a8f994653fdca1a2890 Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Sun, 15 Mar 2026 12:58:51 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20add=20Antigravity=20OAuth=20clientSecret?= =?UTF-8?q?=20fallback=20=E2=80=94=20empty=20string=20caused=20'client=5Fs?= =?UTF-8?q?ecret=20is=20missing'=20(#383)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/oauth/constants/oauth.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/oauth/constants/oauth.ts b/src/lib/oauth/constants/oauth.ts index c8e7f0768e..1cc150d62e 100644 --- a/src/lib/oauth/constants/oauth.ts +++ b/src/lib/oauth/constants/oauth.ts @@ -105,7 +105,8 @@ export const ANTIGRAVITY_CONFIG = { clientId: process.env.ANTIGRAVITY_OAUTH_CLIENT_ID || "1071006060591-tmhssin2h21lcre235vtolojh4g403ep.apps.googleusercontent.com", - clientSecret: process.env.ANTIGRAVITY_OAUTH_CLIENT_SECRET || "", + clientSecret: + process.env.ANTIGRAVITY_OAUTH_CLIENT_SECRET || "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", authorizeUrl: "https://accounts.google.com/o/oauth2/v2/auth", tokenUrl: "https://oauth2.googleapis.com/token", userInfoUrl: "https://www.googleapis.com/oauth2/v1/userinfo",