Skip to content

Commit d9fe3be

Browse files
Merge pull request #326 from daniellienert/bugfix/do-not-skip-indexing
BUGFIX: Do not skip indexing of properties, when fulltext is set to false
2 parents 2f80e3c + 0a49c91 commit d9fe3be

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Classes/Indexer/NodeIndexer.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,9 @@ public function indexNode(NodeInterface $node, $targetWorkspaceName = null): voi
276276
$documentData['__workspace'] = $targetWorkspaceName;
277277
}
278278

279+
$this->toBulkRequest($node, $this->indexerDriver->document($this->getIndexName(), $node, $document, $documentData));
280+
279281
if ($this->isFulltextEnabled($node)) {
280-
$this->toBulkRequest($node, $this->indexerDriver->document($this->getIndexName(), $node, $document, $documentData));
281282
$this->toBulkRequest($node, $this->indexerDriver->fulltext($node, $fulltextIndexOfNode, $targetWorkspaceName));
282283
}
283284
};

0 commit comments

Comments
 (0)