From 7ecbaf74ff2f7519330617cd73e4d8ac72a60f5a Mon Sep 17 00:00:00 2001 From: Arne Gnisa Date: Wed, 11 Oct 2023 15:06:02 +0200 Subject: [PATCH] N21-1273 removed wrong bracket --- helpers/authentication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/authentication.js b/helpers/authentication.js index 29c2ce002b..405d2dd7c7 100644 --- a/helpers/authentication.js +++ b/helpers/authentication.js @@ -496,7 +496,7 @@ const getLogoutUrl = (req, res, logoutEndpoint, idTokenHint, redirect) => { const logoutUrl = new URL(logoutEndpoint); logoutUrl.searchParams.append('id_token_hint', idTokenHint); - const postLoginRedirect = `${Configuration.get('HOST')}/${redirect || 'dashboard'}}`; + const postLoginRedirect = `${Configuration.get('HOST')}/${redirect || 'dashboard'}`; logoutUrl.searchParams.append('post_logout_redirect_uri', postLoginRedirect); return logoutUrl.toString();