Skip to content

Commit

Permalink
Merge pull request #203 from nextcloud/followup/202/urldecode-passwor…
Browse files Browse the repository at this point in the history
…d-aswell

fix(auth): urldecode the app password as well
  • Loading branch information
nickvergessen authored May 24, 2023
2 parents 4e94789 + 1f37e6c commit 72caa34
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 72caa34

Please sign in to comment.