Skip to content

Commit

Permalink
Fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
tmathern committed Mar 15, 2024
1 parent 8c8f263 commit ab04f5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/postprocessing/image.js
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ function convertSvg(img, instructions) {
}

// some svgs have no size (only percentage width/height), so we scale them to our target size
img.in("-size", `${width}`); // 2020-11-10 img.rawSize() will not be applied at the correct time and the SVG will be upscaled resulting in a fuzzy final rendition
img.in("-size", `${imageSize}`); // 2020-11-10 img.rawSize() will not be applied at the correct time and the SVG will be upscaled resulting in a fuzzy final rendition
return img;
}

Expand Down

0 comments on commit ab04f5f

Please sign in to comment.