diff --git a/lib/Core/Site/RelationService.php b/lib/Core/Site/RelationService.php index 118cee8b..d3279220 100644 --- a/lib/Core/Site/RelationService.php +++ b/lib/Core/Site/RelationService.php @@ -169,7 +169,7 @@ public function loadReverseFieldRelations( $query->limit = $limit; } - $result = $this->site->getFindService()->findContent($query); + $result = $this->site->getFilterService()->filterContent($query); return $this->extractContentItems($result); } @@ -201,7 +201,7 @@ public function loadReverseFieldRelationLocations( $query->limit = $limit; } - $result = $this->site->getFindService()->findLocations($query); + $result = $this->site->getFilterService()->filterLocations($query); return $this->extractLocations($result); }