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:
Yuichiro Tachibana (Tsuchiya) 2023-10-13 13:57:21 +09:00 committed by GitHub
parent a55b809423
commit 121f25b2d5
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/app": patch
"gradio": patch
---
feat:Lite: Fix is_self_host() to detect `127.0.0.1` as localhost as well

View File

@ -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
);
}