Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: cache joinedCircles API request
This deprecated API is only used by DAV, but doesn't benefit from the cache, which makes it VERY
heavy when you have a lot of users using calendar intensively

Signed-off-by: Thomas Citharel <[email protected]>
  • Loading branch information
tcitworld committed Jan 14, 2025
commit 18dda7cd28105b00dbe9074e4db734e424e06079
2 changes: 1 addition & 1 deletion lib/Api/v1/Circles.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public static function joinedCircles($userId = '', $forceAll = false) {
$probe->includePersonalCircles($personalCircle);
$probe->filterHiddenCircles();

return $circleService->getCircles($probe);
return $circleService->getCircles($probe, true);
}


Expand Down
Loading