mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-14 02:24:31 +00:00
Merge pull request #2742 from pixelfed/staging
Update story garbage collection
This commit is contained in:
commit
2cbb7b9a6b
1 changed files with 2 additions and 2 deletions
|
@ -48,9 +48,9 @@ class StoryGC extends Command
|
||||||
|
|
||||||
protected function directoryScan()
|
protected function directoryScan()
|
||||||
{
|
{
|
||||||
$hour = now()->hour;
|
$day = now()->day;
|
||||||
|
|
||||||
if($hour !== 1) {
|
if($day !== 3) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue