Skip to content

Commit ef255bb

Browse files
authored
fix url decode
1 parent cc6fa34 commit ef255bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def parse_query_string(query_string):
131131
value = ""
132132
else:
133133
value = param[1]
134-
query_params[key] = value
134+
query_params[key] = unquote(value)
135135
return query_params
136136

137137

0 commit comments

Comments
 (0)