Skip to content

Commit

Permalink
[FEATURE] Show activity protocol only for relevant sites
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Feb 22, 2024
1 parent 7f0c8fb commit 6169b09
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Classes/Domain/Repository/LogRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public function findInterestingLogs(FilterDto $filter, int $limit = 8): QueryRes
$query = $this->createQuery();
$logicalAnd = $this->interestingLogsLogicalAnd($query);
$logicalAnd = $this->extendLogicalAndWithFilterConstraintsForCrdate($filter, $query, $logicalAnd);
$logicalAnd = $this->extendLogicalAndWithFilterConstraintsForSite($filter, $query, $logicalAnd);
$query->matching($query->logicalAnd(...$logicalAnd));
$query->setLimit($limit);
return $query->execute();
Expand Down

0 comments on commit 6169b09

Please sign in to comment.