mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-13 01:54:30 +00:00
commit
8ac41196ac
2 changed files with 11 additions and 5 deletions
|
@ -66,7 +66,13 @@ class MediaS3GarbageCollector extends Command
|
||||||
return;
|
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 ?
|
return $hugeMode ?
|
||||||
$this->hugeMode($minId, $limit, $log) :
|
$this->hugeMode($minId, $limit, $log) :
|
||||||
|
|
|
@ -219,11 +219,11 @@ class StatusController extends Controller
|
||||||
$u->save();
|
$u->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
Cache::forget('_api:statuses:recent_9:' . $status->profile_id);
|
|
||||||
Cache::forget('profile:status_count:' . $status->profile_id);
|
|
||||||
Cache::forget('profile:embed:' . $status->profile_id);
|
|
||||||
StatusService::del($status->id, true);
|
|
||||||
if ($status->profile_id == $user->profile->id || $user->is_admin == true) {
|
if ($status->profile_id == $user->profile->id || $user->is_admin == true) {
|
||||||
|
Cache::forget('_api:statuses:recent_9:' . $status->profile_id);
|
||||||
|
Cache::forget('profile:status_count:' . $status->profile_id);
|
||||||
|
Cache::forget('profile:embed:' . $status->profile_id);
|
||||||
|
StatusService::del($status->id, true);
|
||||||
Cache::forget('profile:status_count:'.$status->profile_id);
|
Cache::forget('profile:status_count:'.$status->profile_id);
|
||||||
StatusDelete::dispatch($status);
|
StatusDelete::dispatch($status);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue