From 83fe40e7eeff1cbb2929dcbaddd7ad5760148a5e Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 7 Oct 2025 14:56:25 +1100 Subject: [PATCH] fix(mm): inverted condition --- invokeai/app/api/routers/model_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/app/api/routers/model_manager.py b/invokeai/app/api/routers/model_manager.py index 7add1d09cf..ba84339a0e 100644 --- a/invokeai/app/api/routers/model_manager.py +++ b/invokeai/app/api/routers/model_manager.py @@ -744,7 +744,7 @@ async def convert_model( logger.error(str(e)) raise HTTPException(status_code=424, detail=str(e)) - if isinstance( + if not isinstance( model_config, ( Main_Checkpoint_SD1_Config,