Skip to content
Snippets Groups Projects
Commit 4f889d20 authored by Kevin von Spiczak's avatar Kevin von Spiczak
Browse files

[BUGFIX] use absolute path for thumbnails

parent 98edad03
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,7 @@ class YoutubeController extends ActionController {
];
$imageService = GeneralUtility::makeInstance(ImageService::class);
$processedImage = $imageService->applyProcessingInstructions($fileObject, $processingInstructions);
$jsonArray[$index]['thumbnail'] = $imageService->getImageUri($processedImage);
$jsonArray[$index]['thumbnail'] = $imageService->getImageUri($processedImage, TRUE);
}
return $jsonArray;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment