diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-18 07:12:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-18 07:12:41 +0000 |
commit | b4b42de9d5956c68151c296926a98e487d2fffae (patch) | |
tree | c95f2e531cc34475eb39266add6d12a2a5e1e2b3 /modules/ui.py | |
parent | 983f2c494ad8fed2f08193681ba0bf5dda01555a (diff) | |
parent | 182330ae40c93b761fced8d03bbdd8523f1739d0 (diff) | |
download | stable-diffusion-webui-gfx803-b4b42de9d5956c68151c296926a98e487d2fffae.tar.gz stable-diffusion-webui-gfx803-b4b42de9d5956c68151c296926a98e487d2fffae.tar.bz2 stable-diffusion-webui-gfx803-b4b42de9d5956c68151c296926a98e487d2fffae.zip |
Merge pull request #10438 from bobzilladev/ngrok-py
Use ngrok-py library
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index 9ae0e2a5..386f493b 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -52,7 +52,7 @@ if cmd_opts.ngrok is not None: ngrok.connect(
cmd_opts.ngrok,
cmd_opts.port if cmd_opts.port is not None else 7860,
- cmd_opts.ngrok_region
+ cmd_opts.ngrok_options
)
|