Skip to content

Commit 282d241

Browse files
authored
Fix asset thumbnails
Return URL instead of path.
1 parent 7c065c4 commit 282d241

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/Transcode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ public function handleGetAssetThumbPath(DefineAssetThumbUrlEvent $event): null|f
615615
'width' => $event->width,
616616
'height' => $event->height,
617617
];
618-
return $this->getVideoThumbnailUrl($event->asset, $options, true, true);
618+
return $this->getVideoThumbnailUrl($event->asset, $options);
619619
}
620620

621621
// Protected Methods

0 commit comments

Comments
 (0)