Browse Source

Update story gc

Daniel Supernault 3 years ago
parent
commit
d32d05eed0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Console/Commands/StoryGC.php

+ 1 - 1
app/Console/Commands/StoryGC.php

@@ -51,7 +51,7 @@ class StoryGC extends Command
 	protected function archiveExpiredStories()
 	{
 		$stories = Story::whereActive(true)
-		->where('expires_at', '<', now())
+		->where('created_at', '<', now()->subHours(24))
 		->get();
 
 		foreach($stories as $story) {