Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-06-02 12:07:56 +0300
committerJoas Schilling <coding@schilljs.com>2021-08-24 17:55:34 +0300
commit8a984779ea3bd268280b5fa3482e38ec63162a4c (patch)
treeaa5314620687fe6d0c6f31de5fd9c54f32f6340e /lib/Service
parentaf402b95c85c762a92e2ea1e5f7630a6f0729fc0 (diff)
Try to get inherited members
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Service')
-rw-r--r--lib/Service/ParticipantService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Service/ParticipantService.php b/lib/Service/ParticipantService.php
index 25720ab61..55cc0fad9 100644
--- a/lib/Service/ParticipantService.php
+++ b/lib/Service/ParticipantService.php
@@ -433,7 +433,7 @@ class ParticipantService {
* @param Participant[] $existingParticipants
*/
public function addCircle(Room $room, Circle $circle, array $existingParticipants = []): void {
- $membersInCircle = $circle->getMembers(); // FIXME getInheritatedMembers()
+ $membersInCircle = $circle->getInheritedMembers();
if (empty($existingParticipants)) {
$existingParticipants = $this->getParticipantsForRoom($room);