Skip to content
This repository was archived by the owner on Jun 12, 2021. It is now read-only.

Commit 000f80b

Browse files
committed
Shouldn't do parse_qs twice.
1 parent 3000028 commit 000f80b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/oidcendpoint/common/authorization.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ def verify_uri(endpoint_context, request, uri_type, client_id=None):
7777
raise URIError("Contains fragment")
7878

7979
(_base, _query) = split_uri(_redirect_uri)
80-
if _query:
81-
_query = parse_qs(_query)
80+
# if _query:
81+
# _query = parse_qs(_query)
8282

8383
match = False
8484
# Get the clients registered redirect uris

0 commit comments

Comments
 (0)