mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Update MediaS3GarbageCollector, fix handle
This commit is contained in:
parent
102e71310d
commit
2eee36cfbd
1 changed files with 7 additions and 1 deletions
|
@ -66,7 +66,13 @@ class MediaS3GarbageCollector extends Command
|
|||
return;
|
||||
}
|
||||
|
||||
$minId = Media::orderByDesc('id')->where('created_at', '<', now()->subHours(12))->first()->id;
|
||||
$minId = Media::orderByDesc('id')->where('created_at', '<', now()->subHours(12))->first();
|
||||
|
||||
if(!$minId) {
|
||||
return;
|
||||
} else {
|
||||
$minId = $minId->id;
|
||||
}
|
||||
|
||||
return $hugeMode ?
|
||||
$this->hugeMode($minId, $limit, $log) :
|
||||
|
|
Loading…
Reference in a new issue