Commit 48875af7 authored by AUTOMATIC's avatar AUTOMATIC
Browse files

fix [Bug]: LoRA don't apply on dropdown list sd_lora #10880

parent df02498d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ class ExtraNetworkParams:
        self.named = {}

        for item in self.items:
            parts = item.split('=', 2)
            parts = item.split('=', 2) if isinstance(item, str) else [item]
            if len(parts) == 2:
                self.named[parts[0]] = parts[1]
            else: