Update MediaS3GarbageCollector, fix handle

This commit is contained in:
Daniel Supernault 2023-04-08 04:25:52 -06:00
parent 102e71310d
commit 2eee36cfbd
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 7 additions and 1 deletions

View File

@ -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) :