fix bug tuple needed for thumbnail function

This commit is contained in:
HappyZ 2023-04-30 21:08:16 -07:00
parent 13778778f9
commit 725896ecc0
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class Img2Img:
if isinstance(reference_image, str):
reference_image = (
base64_to_image(reference_image)
.thumbnail(config.get_width(), config.get_height())
.thumbnail((config.get_width(), config.get_height()))
.convert("RGB")
)