summaryrefslogtreecommitdiffstats
path: root/lib/Flow
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-03-05 12:37:12 +0100
committerJoas Schilling <coding@schilljs.com>2021-03-08 11:56:21 +0100
commit928e047de2dca944ba2d1747bd1e3a83e57e746c (patch)
treeb5d23aa1d49e78f51a983836448223643d98c4b7 /lib/Flow
parent1dd9297864a925f36db88bd3bfd59af41a1e2f3d (diff)
Handle all getParticipants with multi sessions
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Flow')
-rw-r--r--lib/Flow/Operation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Flow/Operation.php b/lib/Flow/Operation.php
index af00807a3..3110e793e 100644
--- a/lib/Flow/Operation.php
+++ b/lib/Flow/Operation.php
@@ -251,6 +251,6 @@ class Operation implements IOperation {
* @throws ParticipantNotFoundException
*/
protected function getParticipant(string $uid, Room $room): Participant {
- return $room->getParticipant($uid);
+ return $room->getParticipant($uid, false);
}
}