Skip to content

Commit 3d2941e

Browse files
committed
fix query string parsing
1 parent 3fe68d2 commit 3d2941e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reactpy/asgi/middleware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ async def run_dispatcher(
180180
scope=scope,
181181
location=Location(
182182
path=ws_query_string.get("http_pathname", [""])[0],
183-
query_string=ws_query_string.get("http_search", [""])[0],
183+
query_string=ws_query_string.get("http_query_string", [""])[0],
184184
),
185185
carrier=self,
186186
)

0 commit comments

Comments
 (0)