Commit fe4d0843 authored by Muhammad Rehan Aslam's avatar Muhammad Rehan Aslam Committed by GitHub

Update webui.py

Added (Fixed) IPV6 Functionality When there is No Webui Argument Passed
parent cf2772fa
...@@ -39,7 +39,7 @@ def api_only(): ...@@ -39,7 +39,7 @@ def api_only():
print(f"Startup time: {startup_timer.summary()}.") print(f"Startup time: {startup_timer.summary()}.")
api.launch( 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, port=cmd_opts.port if cmd_opts.port else 7861,
root_path=f"/{cmd_opts.subpath}" if cmd_opts.subpath else "" root_path=f"/{cmd_opts.subpath}" if cmd_opts.subpath else ""
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment