From 2cf534f39651e41bc4ac661a485fc3939cf8275d Mon Sep 17 00:00:00 2001 From: NFish Date: Fri, 25 Apr 2025 14:31:50 +0800 Subject: [PATCH] fix: remove } in redirect path --- web/service/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/service/base.ts b/web/service/base.ts index 68dee7dce6..c0bda7ca40 100644 --- a/web/service/base.ts +++ b/web/service/base.ts @@ -127,7 +127,7 @@ function requiredWebSSOLogin(message?: string) { params.append('redirect_url', globalThis.location.pathname) if (message) params.append('message', message) - globalThis.location.href = `/webapp-signin?${params.toString()}}` + globalThis.location.href = `/webapp-signin?${params.toString()}` } function getAccessToken(isPublicAPI?: boolean) {