mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
fix wrong variable name
This commit is contained in:
parent
3b5dc51be4
commit
e078fc3eda
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ class Unknown extends Provider {
|
|||
if (extension_loaded('imagick') && file_exists($svgPath)) {
|
||||
$svg = new \Imagick();
|
||||
$svg->setBackgroundColor(new \ImagickPixel('transparent'));
|
||||
$svg->readImage($path);
|
||||
$svg->readImage($svgPath);
|
||||
$svg->setImageFormat('png32');
|
||||
|
||||
$image = new \OC_Image();
|
||||
|
|
|
|||
Loading…
Reference in a new issue