mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
Lite: Fix is_self_host() to detect 127.0.0.1
as localhost as well (#5886)
* Fix is_self_host() to detect `127.0.0.1` as localhost as well * add changeset * add changeset --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
parent
a55b809423
commit
121f25b2d5
6
.changeset/eager-snakes-look.md
Normal file
6
.changeset/eager-snakes-look.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Lite: Fix is_self_host() to detect `127.0.0.1` as localhost as well
|
@ -1,5 +1,5 @@
|
||||
export function is_self_host(url: URL): boolean {
|
||||
return (
|
||||
url.host === window.location.host || url.host === "localhost:7860" // Ref: https://github.com/gradio-app/gradio/blob/v3.32.0/js/app/src/Index.svelte#L194
|
||||
url.host === window.location.host || url.host === "localhost:7860" || url.host === "127.0.0.1:7860" // Ref: https://github.com/gradio-app/gradio/blob/v3.32.0/js/app/src/Index.svelte#L194
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user