Update MediaDeletePipeline to handle flysystem v3

This commit is contained in:
Daniel Supernault 2022-11-14 01:47:53 -07:00
parent 4423231ebb
commit 1f7f6ca3a3
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 10 additions and 4 deletions

View File

@ -38,8 +38,14 @@ class MediaDeletePipeline implements ShouldQueue
if(config_cache('pixelfed.cloud_storage') == true) {
$disk = Storage::disk(config('filesystems.cloud'));
$disk->delete($path);
$disk->delete($thumb);
if($path) {
$disk->delete($path);
}
if($thumb) {
$disk->delete($thumb);
}
if(count($e) > 4 && count($disk->files($i)) == 0) {
$disk->deleteDirectory($i);
@ -47,10 +53,10 @@ class MediaDeletePipeline implements ShouldQueue
}
$disk = Storage::disk(config('filesystems.local'));
if($disk->exists($path)) {
if($path && $disk->exists($path)) {
$disk->delete($path);
}
if($disk->exists($thumb)) {
if($thumb && $disk->exists($thumb)) {
$disk->delete($thumb);
}
if(count($e) > 4 && count($disk->files($i)) == 0) {