Skip to content

Commit c899925

Browse files
committed
Bugfix for multi-ip-adapter in DenoiseLatentsInvocation.
1 parent 19c52a7 commit c899925

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

invokeai/app/invocations/latent.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -462,9 +462,9 @@ def prep_ip_adapter_data(
462462
ip_adapter_data_list.append(
463463
IPAdapterData(
464464
ip_adapter_model=ip_adapter_model,
465-
weight=ip_adapter.weight,
466-
begin_step_percent=ip_adapter.begin_step_percent,
467-
end_step_percent=ip_adapter.end_step_percent,
465+
weight=single_ip_adapter.weight,
466+
begin_step_percent=single_ip_adapter.begin_step_percent,
467+
end_step_percent=single_ip_adapter.end_step_percent,
468468
)
469469
)
470470

0 commit comments

Comments
 (0)