From 1f37e6cb21ae857b07aa9f9c13b11137e787d793 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 24 May 2023 09:33:56 +0200 Subject: [PATCH] fix(auth): urldecode the app password as well Signed-off-by: Joas Schilling --- src/authentication/login.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentication/login.service.js b/src/authentication/login.service.js index 016eced2..24dc6bdd 100644 --- a/src/authentication/login.service.js +++ b/src/authentication/login.service.js @@ -43,7 +43,7 @@ function parseLoginRedirectUrl(url) { return { server: parsed[1], user: decodeURIComponent(parsed[2].replaceAll('+', ' ')), - password: parsed[3], + password: decodeURIComponent(parsed[3].replaceAll('+', ' ')), } }