diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-25 12:19:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 12:19:10 +0000 |
commit | bed598ce7fb547e57c73675ab0a096c4714f8b9f (patch) | |
tree | c192351a531ea78ebc96d8e17636bb677d2a20a9 /webui.py | |
parent | fc8e23dec54807afbcb229caa53bcc540b4000b1 (diff) | |
parent | b1a16a298c7f71e8e7d6254f16d4143f77b5c9a5 (diff) | |
download | stable-diffusion-webui-gfx803-bed598ce7fb547e57c73675ab0a096c4714f8b9f.tar.gz stable-diffusion-webui-gfx803-bed598ce7fb547e57c73675ab0a096c4714f8b9f.tar.bz2 stable-diffusion-webui-gfx803-bed598ce7fb547e57c73675ab0a096c4714f8b9f.zip |
Merge pull request #11984 from AUTOMATIC1111/api-only-subpath-(root_path)
api only subpath (rootpath)
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ""
)
|