aboutsummaryrefslogtreecommitdiff
path: root/webui.py
diff options
context:
space:
mode:
authorMuhammad Rehan Aslam <19831661+ranareehanaslam@users.noreply.github.com>2023-12-18 17:50:00 +0500
committerGitHub <noreply@github.com>2023-12-18 17:50:00 +0500
commitfe4d084390d35de49baf83c3319a72d71f540aee (patch)
tree8a13b2aeac8c3dfcebda222897a49c33932d67f0 /webui.py
parentcf2772fab0af5573da775e7437e6acdca424f26e (diff)
Update webui.py
Added (Fixed) IPV6 Functionality When there is No Webui Argument Passed
Diffstat (limited to 'webui.py')
-rw-r--r--webui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui.py b/webui.py
index 9ed20b30..3b587dc4 100644
--- a/webui.py
+++ b/webui.py
@@ -39,7 +39,7 @@ def api_only():
print(f"Startup time: {startup_timer.summary()}.")
api.launch(
- server_name="0.0.0.0" if cmd_opts.listen else "127.0.0.1",
+ server_name = cmd_opts.server_name if cmd_opts.server_name else ("0.0.0.0" if cmd_opts.listen else "127.0.0.1"),
port=cmd_opts.port if cmd_opts.port else 7861,
root_path=f"/{cmd_opts.subpath}" if cmd_opts.subpath else ""
)