summaryrefslogtreecommitdiffstats
path: root/lib/Db/NotesRequest.php
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-11-28 09:16:20 -0100
committerMaxence Lange <maxence@artificial-owl.com>2018-11-28 09:16:20 -0100
commit15358d0e478e7de4ba7efdc2fe5d6e0c2c30d8c7 (patch)
tree777789587f7e4546edef9e1ee5c91a05e39fcd83 /lib/Db/NotesRequest.php
parentb06f3ffff19c2a80dadbcd921ef931a48186f4d6 (diff)
cache actors
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Db/NotesRequest.php')
-rw-r--r--lib/Db/NotesRequest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Db/NotesRequest.php b/lib/Db/NotesRequest.php
index 715a722a..3c176a85 100644
--- a/lib/Db/NotesRequest.php
+++ b/lib/Db/NotesRequest.php
@@ -148,7 +148,7 @@ class NotesRequest extends NotesRequestBuilder {
$this->rightJoinFollowing($qb);
$this->limitToActorId($qb, $actorId, 'f');
$this->limitPaginate($qb, $since, $limit);
-// $this->leftJoinCacheActors($qb, 'attributed_to');
+ $this->leftJoinCacheActors($qb, 'attributed_to');
$notes = [];
$cursor = $qb->execute();