Skip to content

Commit

Permalink
fix: Determine resources to be indexed only once
Browse files Browse the repository at this point in the history
  • Loading branch information
sitepark-veltrup committed May 15, 2024
1 parent 6d64470 commit 03aada2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/Indexer/InternalResourceIndexer.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function index(): IndexerStatus
$total = count($paths);
$this->progressHandler->start($total);

$this->indexResources($param, $this->finder->findAll());
$this->indexResources($param, $paths);
} finally {
$lock->release();
$this->progressHandler->finish();
Expand Down

0 comments on commit 03aada2

Please sign in to comment.