mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-11-27 06:40:10 +08:00
Update webui.py
Added (Fixed) IPV6 Functionality When there is No Webui Argument Passed
This commit is contained in:
parent
cf2772fab0
commit
fe4d084390
2
webui.py
2
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 ""
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user