Merge pull request #14354 from ranareehanaslam/master

Update Added (Fixed) IPV6 Functionality When there is No Webui Argument Passed webui.py
This commit is contained in:
AUTOMATIC1111 2023-12-30 15:11:49 +03:00 committed by GitHub
commit 83c0758d90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 or ("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 ""
)