Type mismatch fix

This commit is contained in:
invincibledude
2023-01-21 23:25:36 +03:00
parent 3bd898b6ce
commit 6c0566f937
2 changed files with 3 additions and 3 deletions

View File

@@ -864,8 +864,8 @@ class StableDiffusionProcessingTxt2Img(StableDiffusionProcessing):
img2img_sampler_name = self.sampler_name if self.sampler_name != 'PLMS' else 'DDIM' # PLMS does not support img2img so we just silently switch ot DDIM
if self.hr_sampler != 0 and sd_samplers.samplers[self.hr_sampler].name != 'PLMS':
img2img_sampler_name = sd_samplers.samplers[self.hr_sampler].name
if self.hr_sampler != 0 and self.hr_sampler != 'PLMS':
img2img_sampler_name = self.hr_sampler
self.sampler = sd_samplers.create_sampler(img2img_sampler_name, self.sd_model)