summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2023-02-01 14:53:03 +0100
committerGitHub <noreply@github.com>2023-02-01 14:53:03 +0100
commite9aa7d109dd2c87a57b4c678c0235a0299073e51 (patch)
tree00c3a6409f9cc05f4f036b45e95463f3bda31f57 /lib
parenta6e9b6e9eef7e90c7158a248e1351575bf2e2369 (diff)
parent71cbc795b6df446d018f08edab8934e092c8ab82 (diff)
Merge pull request #8656 from nextcloud/bugfix/noid/notify-participants-about-conversation-changes
fix(conversations): Notify participants about conversation changes so…
Diffstat (limited to 'lib')
-rw-r--r--lib/Signaling/Listener.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Signaling/Listener.php b/lib/Signaling/Listener.php
index a129f3b49..76b89c074 100644
--- a/lib/Signaling/Listener.php
+++ b/lib/Signaling/Listener.php
@@ -83,6 +83,9 @@ class Listener {
$dispatcher->addListener(Room::EVENT_AFTER_LISTABLE_SET, [self::class, 'notifyAfterRoomSettingsChanged']);
$dispatcher->addListener(Room::EVENT_AFTER_LOBBY_STATE_SET, [self::class, 'notifyAfterRoomSettingsChanged']);
$dispatcher->addListener(Room::EVENT_AFTER_SIP_ENABLED_SET, [self::class, 'notifyAfterRoomSettingsChanged']);
+ $dispatcher->addListener(Room::EVENT_AFTER_SET_CALL_RECORDING, [self::class, 'notifyAfterRoomSettingsChanged']);
+ $dispatcher->addListener(Room::EVENT_AFTER_SET_BREAKOUT_ROOM_MODE, [self::class, 'notifyAfterRoomSettingsChanged']);
+ $dispatcher->addListener(Room::EVENT_AFTER_SET_BREAKOUT_ROOM_STATUS, [self::class, 'notifyAfterRoomSettingsChanged']);
// TODO remove handler with "roomModified" in favour of handler with
// "participantsModified" once the clients no longer expect a
// "roomModified" message for participant type changes.