summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-12-18 15:42:01 -0100
committerGitHub <noreply@github.com>2018-12-18 15:42:01 -0100
commit7a87a3c7ae1e027545ac049a79910182bb418838 (patch)
tree36a15fac0fe585cbe376a8ae86415d39fbd538ba /lib
parentcfc79e1e0f88c8eed31f2b2f2e7317c3c5230e98 (diff)
parentf32836b91cfe8e3177b977f70ee9e6f11809a26f (diff)
Merge pull request #197 from nextcloud/cleaning-followers-request
do not search for followers Id within the attributed_to field
Diffstat (limited to 'lib')
-rw-r--r--lib/Db/NotesRequestBuilder.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Db/NotesRequestBuilder.php b/lib/Db/NotesRequestBuilder.php
index 4f651211..45b43b8b 100644
--- a/lib/Db/NotesRequestBuilder.php
+++ b/lib/Db/NotesRequestBuilder.php
@@ -138,7 +138,7 @@ class NotesRequestBuilder extends CoreRequestBuilder {
$pf = $this->defaultSelectAlias . '.';
$on = $expr->orX();
- $on->add($this->exprLimitToRecipient($qb, $actor->getFollowers(), true));
+ $on->add($this->exprLimitToRecipient($qb, $actor->getFollowers(), false));
// list of possible recipient as a follower (to, to_array, cc, ...)
$recipientFields = $expr->orX();