Fix bug extra_model_paths (solution provided by @schoenid)

This commit is contained in:
sgumil 2025-12-19 10:41:11 +01:00
parent 894802b0f9
commit 8141c32763

View File

@ -11,24 +11,20 @@ def load_extra_path_config(yaml_path):
conf = config[c]
if conf is None:
continue
base_path = None
if "base_path" in conf:
base_path = conf.pop("base_path")
base_path = os.path.expandvars(os.path.expanduser(base_path))
if "base_path" in c:
base_path = os.path.expandvars(os.path.expanduser(conf))
if not os.path.isabs(base_path):
base_path = os.path.abspath(os.path.join(yaml_dir, base_path))
is_default = False
continue
if "is_default" in conf:
is_default = conf.pop("is_default")
for x in conf:
for y in conf[x].split("\n"):
if len(y) == 0:
continue
full_path = y
if base_path:
full_path = os.path.join(base_path, full_path)
elif not os.path.isabs(full_path):
full_path = os.path.abspath(os.path.join(yaml_dir, y))
normalized_path = os.path.normpath(full_path)
logging.info("Adding extra search path {} {}".format(x, normalized_path))
folder_paths.add_model_folder_path(x, normalized_path, is_default)
continue
if len(conf) == 0:
continue
full_path = conf
if base_path:
full_path = os.path.join(base_path, full_path)
elif not os.path.isabs(full_path):
full_path = os.path.abspath(os.path.join(yaml_dir, conf))
normalized_path = os.path.normpath(full_path)
logging.info("Adding extra search path {} {}".format(c, normalized_path))
folder_paths.add_model_folder_path(c, normalized_path, False)