1
0
Fork 0

pass correct scale params

This commit is contained in:
Sean Sube 2024-01-14 20:45:28 -06:00
parent 0f12c37931
commit 482d9b246d
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 2 additions and 1 deletions

View File

@ -93,11 +93,12 @@ def add_thumbnail_output(
if metadata.highres is not None: if metadata.highres is not None:
metadata.highres = metadata.highres.with_args( metadata.highres = metadata.highres.with_args(
outscale=1, scale=1,
) )
if metadata.upscale is not None: if metadata.upscale is not None:
metadata.upscale = metadata.upscale.with_args( metadata.upscale = metadata.upscale.with_args(
scale=1,
outscale=1, outscale=1,
) )