Sfoglia il codice sorgente

Update TransformImports command, bump limit from 10 to 100

Daniel Supernault 2 anni fa
parent
commit
6d0c5994da
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      app/Console/Commands/TransformImports.php

+ 1 - 1
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;