mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update AP helpers, only run MediaStoragePipeline if using cloud storage
This commit is contained in:
parent
258b2729d3
commit
77f21b4b33
1 changed files with 4 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue