diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-27 18:29:48 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-27 18:29:59 +0000 |
commit | bfc5c0810979545003f3854e86c35fdcaa8b3672 (patch) | |
tree | 10df05a9b04e4bbe83411e30a0adf7f40d83d16e /webui.py | |
parent | d0d5075914efaf06ae60df28171579d8cf3bb30a (diff) | |
download | stable-diffusion-webui-gfx803-bfc5c0810979545003f3854e86c35fdcaa8b3672.tar.gz stable-diffusion-webui-gfx803-bfc5c0810979545003f3854e86c35fdcaa8b3672.tar.bz2 stable-diffusion-webui-gfx803-bfc5c0810979545003f3854e86c35fdcaa8b3672.zip |
Merge pull request #12814 from AUTOMATIC1111/non-local-condition
non-local condition
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ def webui(): if shared.opts.auto_launch_browser == "Remote" or cmd_opts.autolaunch:
auto_launch_browser = True
elif shared.opts.auto_launch_browser == "Local":
- auto_launch_browser = not any([cmd_opts.listen, cmd_opts.share, cmd_opts.ngrok])
+ auto_launch_browser = not any([cmd_opts.listen, cmd_opts.share, cmd_opts.ngrok, cmd_opts.server_name])
app, local_url, share_url = shared.demo.launch(
share=cmd_opts.share,
|