Skip to content

Commit fe26f56

Browse files
juliusknorrbackportbot[bot]
authored andcommitted
Pass forceAll also when fetching the members list
Signed-off-by: Julius Härtl <jus@bitgrid.net>
1 parent 110922d commit fe26f56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Service/CirclesService.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ public function detailsCircle($circleUniqueId, $forceAll = false) {
284284
|| $circle->getHigherViewer()
285285
->isLevel(Member::LEVEL_MEMBER)
286286
) {
287-
$this->detailsCircleMembers($circle);
287+
$this->detailsCircleMembers($circle, $forceAll);
288288
$this->detailsCircleLinkedGroups($circle);
289289
$this->detailsCircleFederatedCircles($circle);
290290
}
@@ -303,8 +303,8 @@ public function detailsCircle($circleUniqueId, $forceAll = false) {
303303
*
304304
* @throws Exception
305305
*/
306-
private function detailsCircleMembers(Circle $circle) {
307-
if ($this->viewerIsAdmin()) {
306+
private function detailsCircleMembers(Circle $circle, $forceAll = false) {
307+
if ($forceAll || $this->viewerIsAdmin()) {
308308
$members = $this->membersRequest->forceGetMembers($circle->getUniqueId(), 0);
309309
} else {
310310
$members = $this->membersRequest->getMembers(

0 commit comments

Comments
 (0)