Skip to content

Commit 0a49c91

Browse files
committed
BUGFIX: Do not skip indexing of node properties, when fulltext is set to false
1 parent 2f80e3c commit 0a49c91

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)