1
0
Fork 0

Merge pull request #3767 from pixelfed/staging

Update MediaDeletePipeline to handle flysystem v3
This commit is contained in:
daniel 2022-11-14 01:48:30 -07:00 committed by GitHub
commit bbb9cc68e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'));
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) {