From 121c51289b9dcc3865fc5418eb47b0c1d6fd1874 Mon Sep 17 00:00:00 2001 From: vladmandic Date: Fri, 13 Mar 2026 12:02:27 +0100 Subject: [PATCH] patch lora Signed-off-by: vladmandic --- modules/lora/lora_load.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/lora/lora_load.py b/modules/lora/lora_load.py index 259303731..70cf55161 100644 --- a/modules/lora/lora_load.py +++ b/modules/lora/lora_load.py @@ -192,6 +192,8 @@ def list_available_networks(): if entry.alias in available_network_aliases: forbidden_network_aliases[entry.alias.lower()] = 1 available_network_aliases[entry.name] = entry + if entry.fullname != entry.name: + available_network_aliases[entry.fullname] = entry if entry.shorthash: available_network_hash_lookup[entry.shorthash] = entry except OSError as e: # should catch FileNotFoundError and PermissionError etc.