mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 08:57:39 +08:00
Fixed bad collection/array mixing causing error on seed
This commit is contained in:
parent
d56e7e7c79
commit
bf8716bb22
|
@ -3,6 +3,7 @@
|
|||
use BookStack\Entities\EntityProvider;
|
||||
use BookStack\Entities\Models\Entity;
|
||||
use BookStack\Entities\Models\SearchTerm;
|
||||
use Illuminate\Support\Collection;
|
||||
|
||||
class SearchIndex
|
||||
{
|
||||
|
@ -75,8 +76,8 @@ class SearchIndex
|
|||
$entityModel->newQuery()
|
||||
->withTrashed()
|
||||
->select($selectFields)
|
||||
->chunk(1000, function ($entities) {
|
||||
$this->indexEntities($entities);
|
||||
->chunk(1000, function (Collection $entities) {
|
||||
$this->indexEntities($entities->all());
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user