Skip to content

Commit

Permalink
Fix openid path that is still expecting a trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Nov 19, 2023
1 parent 8dbffa7 commit ef4d7ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/connection/ServerConnectForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export default {
this.oauth.challenge = challenge
// set parameter isRest to true, so the backend wont attempt a redirect after we call backend:/callback in exchangeCodeForToken
const backendEndpoint = `${url}auth/openid?code_challenge=${challenge}&code_challenge_method=S256&isRest=true`
const backendEndpoint = `${url}/auth/openid?code_challenge=${challenge}&code_challenge_method=S256&isRest=true`
try {
const response = await CapacitorHttp.get({
Expand Down

0 comments on commit ef4d7ba

Please sign in to comment.