From b75795cac214c4d852e7bcdf6a113497f5ec4d67 Mon Sep 17 00:00:00 2001 From: ReallyLiri Date: Sat, 3 May 2025 19:08:27 +0300 Subject: [PATCH] ; --- src/lib/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils.ts b/src/lib/utils.ts index b1a7d39..28ef0e5 100644 --- a/src/lib/utils.ts +++ b/src/lib/utils.ts @@ -303,7 +303,7 @@ export function setupOAuthCallbackServerWithLongPoll(options: OAuthCallbackServe const postAuthRedirectUri = req.query.postAuthRedirectUri as string | undefined if (postAuthRedirectUri) { log(`Redirecting to post-auth redirect URI: ${postAuthRedirectUri}`) - res.redirect(postAuthRedirectUri); + res.redirect(postAuthRedirectUri) } else { res.send('Authorization successful! You may close this window and return to the CLI.') }