fix: bypass_ssl

- move to prestartup_script.py from __init__.py
- inproper interpretation of bypass_ssl option reflies on invalid type
This commit is contained in:
Dr.Lt.Data
2023-11-10 15:57:43 +09:00
parent 7605082862
commit 3303ce7683
2 changed files with 17 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ import concurrent
import ssl
from urllib.parse import urlparse
version = "V0.42"
version = "V0.43"
print(f"### Loading: ComfyUI-Manager ({version})")
@@ -1409,10 +1409,6 @@ async def channel_url_list(request):
return web.Response(status=200)
if get_config()['bypass_ssl']:
ssl._create_default_https_context = ssl._create_unverified_context # SSL certificate error fix.
WEB_DIRECTORY = "js"
NODE_CLASS_MAPPINGS = {}
__all__ = ['NODE_CLASS_MAPPINGS']