Unverified Commit 2c79f2af authored by AUTOMATIC1111's avatar AUTOMATIC1111 Committed by GitHub
Browse files

Merge pull request #12466 from catboxanon/fix/lora-old-mk2

Fix broken `Lora/Networks: use old method` option
parents 458eda13 4fafc34e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -357,7 +357,7 @@ def network_forward(module, input, original_forward):
        if module is None:
            continue

        y = module.forward(y, input)
        y = module.forward(input, y)

    return y