Skip to content

Commit

Permalink
fixup! chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mu88 committed Sep 17, 2024
1 parent c3da2fd commit 9ad818e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ScreenshotCreator.Logic/ImageProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private byte[] ToWaveshareBytes(MagickImage image)
{
if (image.Width != 800 || image.Height != 480)
{
logger.InvalidDimensions(image.Width, 800, image.Height, 480);
logger.InvalidDimensions(Convert.ToInt32(image.Width), 800, Convert.ToInt32(image.Height), 480);
return Array.Empty<byte>();
}

Expand Down

0 comments on commit 9ad818e

Please sign in to comment.