From 6d0c5994da0721201b1ce910a9275366e008533d Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 12 Jun 2023 05:53:29 -0600 Subject: [PATCH] Update TransformImports command, bump limit from 10 to 100 --- app/Console/Commands/TransformImports.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/TransformImports.php b/app/Console/Commands/TransformImports.php index e09c02653..a08f7ed76 100644 --- a/app/Console/Commands/TransformImports.php +++ b/app/Console/Commands/TransformImports.php @@ -38,7 +38,7 @@ class TransformImports extends Command return; } - $ips = ImportPost::whereNull('status_id')->whereSkipMissingMedia(false)->take(10)->get(); + $ips = ImportPost::whereNull('status_id')->whereSkipMissingMedia(false)->take(100)->get(); if(!$ips->count()) { return;