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.
1 parent a9776a8 commit 20642d4Copy full SHA for 20642d4
authentik/providers/proxy/models.py
@@ -34,10 +34,9 @@ def _get_callback_url(uri: str) -> list[RedirectURI]:
34
return [
35
RedirectURI(
36
RedirectURIMatchingMode.STRICT,
37
- urljoin(uri, "outpost.goauthentik.io/callback")
38
- + f"\\?{OUTPOST_CALLBACK_SIGNATURE}=true",
+ urljoin(uri, "outpost.goauthentik.io/callback") + f"?{OUTPOST_CALLBACK_SIGNATURE}=true",
39
),
40
- RedirectURI(RedirectURIMatchingMode.STRICT, uri + f"\\?{OUTPOST_CALLBACK_SIGNATURE}=true"),
+ RedirectURI(RedirectURIMatchingMode.STRICT, uri + f"?{OUTPOST_CALLBACK_SIGNATURE}=true"),
41
]
42
43
0 commit comments