Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/6.0' into 6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mattamon committed Aug 28, 2024
2 parents f730229 + 11601dc commit b3b3713
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,10 @@ protected function updateUpdateQueueForDataObject(Concrete $object)

public function doDeleteFromIndex(Concrete $object): void
{
if ($this->isExcludedClass($object->getClassName())) {
return;
}

$params = [
'index' => $this->getIndexName($object->getClassName()),
'id' => $object->getId()
Expand Down

0 comments on commit b3b3713

Please sign in to comment.