Restore query parameters in request (#6327)

* changes

* changes

* add changeset

* console

* changes

* changes

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
This commit is contained in:
aliabid94 2023-11-07 15:15:10 -08:00 committed by GitHub
parent ed546f2e13
commit bca6c2c80f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/client": patch
"gradio": patch
---
fix:Restore query parameters in request

View File

@ -657,7 +657,7 @@ export function api_factory(
host,
config.path,
true
)}/queue/join?${params}`
)}/queue/join?${url_params ? url_params + "&" : ""}${params}`
);
eventSource = new EventSource(url);