This commit is contained in:
grzegorzewskiflyingdog 2026-01-04 14:00:51 -06:00 committed by GitHub
commit 780f793cac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -338,6 +338,7 @@ class PromptServer():
for name, dir in nodes.EXTENSION_WEB_DIRS.items():
files = glob.glob(os.path.join(glob.escape(dir), '**/*.js'), recursive=True)
files = [file for file in files if 'no_auto_execute' not in file]
extensions.extend(list(map(lambda f: "/extensions/" + urllib.parse.quote(
name) + "/" + os.path.relpath(f, dir).replace("\\", "/"), files)))