Merge pull request #11984 from AUTOMATIC1111/api-only-subpath-(root_path)

api only subpath (rootpath)
This commit is contained in:
AUTOMATIC1111
2023-07-25 15:19:10 +03:00
parent c251e8db8d
commit ce0aab3643
2 changed files with 3 additions and 3 deletions

View File

@@ -374,7 +374,7 @@ def api_only():
api.launch(
server_name="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}"
root_path=f"/{cmd_opts.subpath}" if cmd_opts.subpath else ""
)