From b22f09bd1df81c3908b51ff197d2404baa8b7c54 Mon Sep 17 00:00:00 2001 From: Will Miao Date: Fri, 3 Jul 2026 19:21:56 +0800 Subject: [PATCH] fix(standalone): load extra folder paths from library settings in standalone mode --- py/config.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/py/config.py b/py/config.py index 6c3b157d..0931b6fa 100644 --- a/py/config.py +++ b/py/config.py @@ -177,8 +177,7 @@ class Config: # Load extra folder paths from active library settings before symlink scan # so both primary and extra paths are discovered in a single pass. - if not standalone_mode: - self._load_extra_paths_from_settings() + self._load_extra_paths_from_settings() # Scan symbolic links during initialization self._initialize_symlink_mappings() @@ -193,7 +192,7 @@ class Config: Called during ``Config.__init__`` before the symlink scan so both primary and extra paths are discovered in a single pass. Mirrors the extra-path portion of ``_apply_library_paths`` without replacing the primary roots - that were already resolved from ComfyUI's ``folder_paths``. + that were already resolved via ``folder_paths.get_folder_paths``. """ try: from .services.settings_manager import get_settings_manager