This commit is contained in:
grzegorzewskiflyingdog 2026-04-18 15:25:48 -07:00 committed by GitHub
commit dc0f239c35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -349,6 +349,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)))