From ef4d7ba1bf7f4bbd799af56c7599fb10dae4036a Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 19 Nov 2023 14:45:35 -0600 Subject: [PATCH] Fix openid path that is still expecting a trailing slash --- components/connection/ServerConnectForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/connection/ServerConnectForm.vue b/components/connection/ServerConnectForm.vue index 25061927..af27fb5b 100644 --- a/components/connection/ServerConnectForm.vue +++ b/components/connection/ServerConnectForm.vue @@ -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({