Update AP helpers, only run MediaStoragePipeline if using cloud storage

This commit is contained in:
Daniel Supernault 2021-01-24 21:13:31 -07:00
parent 258b2729d3
commit 77f21b4b33
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 4 additions and 1 deletions

View File

@ -401,7 +401,10 @@ class Helpers {
$media->remote_url = $url;
$media->mime = $type;
$media->save();
MediaStoragePipeline::dispatch($media);
if(config('pixelfed.cloud_storage') == true) {
MediaStoragePipeline::dispatch($media);
}
}
$status->viewType();