Skip to content

Commit

Permalink
Restore query parameters in request (#6327)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
3 people committed Nov 7, 2023
1 parent ed546f2 commit bca6c2c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changeset/bitter-knives-yawn.md
@@ -0,0 +1,6 @@
---
"@gradio/client": patch
"gradio": patch
---

fix:Restore query parameters in request
2 changes: 1 addition & 1 deletion client/js/src/client.ts
Expand Up @@ -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);
Expand Down

0 comments on commit bca6c2c

Please sign in to comment.