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 <213943+nickvergessen@users.noreply.github.com>2021-10-25 13:22:08 +0300
committerGitHub <noreply@github.com>2021-10-25 13:22:08 +0300
commit351c3090c073a7208c830447ac7807bf916d2718 (patch)
tree7a74b1948080a349968ad8adfa77908a99d76bdf /lib/Notification
parent00269d075ef38cc25d0cfca5364854264a0332b3 (diff)
parent730a18416b3db0c86ebe8daff0a90eaef651d278 (diff)
Merge pull request #6338 from nextcloud/feature/noid/allow-to-opt-out-of-call-notifications
Allow to opt out of call notifications
Diffstat (limited to 'lib/Notification')
-rw-r--r--lib/Notification/Listener.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Notification/Listener.php b/lib/Notification/Listener.php
index 9c65e7549..2919329e6 100644
--- a/lib/Notification/Listener.php
+++ b/lib/Notification/Listener.php
@@ -247,7 +247,7 @@ class Listener {
return;
}
- $userIds = $this->participantsService->getParticipantUserIdsNotInCall($room);
+ $userIds = $this->participantsService->getParticipantUserIdsForCallNotifications($room);
foreach ($userIds as $userId) {
if ($actorId === $userId) {
continue;