mirror of https://github.com/pixelfed/pixelfed.git
Update MediaTransformer, fix type case bug. Fixes #3281
This commit is contained in:
parent
5e25689ec2
commit
c166925319
|
@ -11,7 +11,7 @@ class MediaTransformer extends Fractal\TransformerAbstract
|
|||
{
|
||||
$res = [
|
||||
'id' => (string) $media->id,
|
||||
'type' => $media->activityVerb(),
|
||||
'type' => strtolower($media->activityVerb()),
|
||||
'url' => $media->url(),
|
||||
'remote_url' => null,
|
||||
'preview_url' => $media->thumbnailUrl(),
|
||||
|
|
Loading…
Reference in New Issue