Skip to content

Commit

Permalink
fix(auth): urldecode the app password as well
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed May 24, 2023
1 parent c9daf63 commit 1f37e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/authentication/login.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function parseLoginRedirectUrl(url) {
return {
server: parsed[1],
user: decodeURIComponent(parsed[2].replaceAll('+', ' ')),
password: parsed[3],
password: decodeURIComponent(parsed[3].replaceAll('+', ' ')),
}
}

Expand Down

0 comments on commit 1f37e6c

Please sign in to comment.