Skip to content

Commit

Permalink
fixed phpcs error
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffbuyunhe committed Oct 19, 2023
1 parent e9c1858 commit 3d50fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin/MediaThumbnail/MediaThumbnailJp2.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function createThumbnail($sourceUri) {

// Read the Jp2.
try {
$cmd = "convert " . $path . " -resize " . $width . "x" . $width . " /tmp/" . $filename . ".jpg";
$cmd = "convert " . $path . " -resize " . $width . "x" . $width . " /tmp/" . $filename . ".jpg";
exec($cmd);
}
catch (\ImagickException $e) {
Expand Down

0 comments on commit 3d50fef

Please sign in to comment.