We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 061c4ef + 322f2c2 commit 1d7098aCopy full SHA for 1d7098a
spid_cie_oidc/provider/views/consent_page_view.py
@@ -106,7 +106,7 @@ def oidc_provider_not_consent(request):
106
),
107
state = state
108
)
109
- url = f'{redirect_uri.scheme}://{redirect_uri.netloc}{redirect_uri.path} if redirect_uri.path else "/"}?{urllib.parse.urlencode(kwargs)}'
+ url = f'{redirect_uri.scheme}://{redirect_uri.netloc}{redirect_uri.path if redirect_uri.path else "/"}?{urllib.parse.urlencode(kwargs)}'
110
return HttpResponseRedirect(url)
111
112
0 commit comments