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
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-12-14 19:34:27 +0300
committerJoas Schilling <coding@schilljs.com>2021-12-15 16:19:22 +0300
commitab0c61a14358a25d94bacfc0a3fbbb477f4fb85e (patch)
treea41f16d939244e13218a08b21a537ab2b64787b5 /lib
parent802d1d2f3e4af3e1a590fca7b6dc24c4115f30a4 (diff)
Make it explicit when the participant list changed
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Room.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Room.php b/lib/Room.php
index f3f03880a..647462b40 100644
--- a/lib/Room.php
+++ b/lib/Room.php
@@ -434,9 +434,9 @@ class Room {
];
if ($roomModified) {
- $properties = array_merge($properties, [
- 'description' => $this->getDescription(),
- ]);
+ $properties['description'] = $this->getDescription();
+ } else {
+ $properties['participant-list'] = 'refresh';
}
$event = new SignalingRoomPropertiesEvent($this, $userId, $properties);