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>2019-09-09 18:31:19 +0300
committerJoas Schilling <coding@schilljs.com>2019-09-09 18:31:19 +0300
commitcf0a10aad53df4af33860cb8c2f05df1a3bef116 (patch)
tree5da1d6ceeca7fa07e969b3695367e62f290610f9 /lib/Activity
parente40518fdc27117b989e2e474fb52b59ede15e551 (diff)
Show the call summary after the last "left the call" message
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Activity')
-rw-r--r--lib/Activity/Listener.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Activity/Listener.php b/lib/Activity/Listener.php
index 581f90eb5..6ffff70b1 100644
--- a/lib/Activity/Listener.php
+++ b/lib/Activity/Listener.php
@@ -82,7 +82,7 @@ class Listener {
};
$dispatcher->addListener(Room::class . '::postRemoveBySession', $listener);
$dispatcher->addListener(Room::class . '::postRemoveUser', $listener);
- $dispatcher->addListener(Room::class . '::postSessionLeaveCall', $listener);
+ $dispatcher->addListener(Room::class . '::postSessionLeaveCall', $listener, -100);
$listener = function(GenericEvent $event) {
/** @var Room $room */