summaryrefslogtreecommitdiffstats
path: root/lib/Controller/PageController.php
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-09-22 21:11:53 +0200
committerGitHub <noreply@github.com>2020-09-22 21:11:53 +0200
commit5bd5779d356907e9c7ab3de6ad4bbdecb5857c94 (patch)
treef3f70f46f6c7bd263edb154d22405fba31bd2343 /lib/Controller/PageController.php
parent112dd2e1b37ae40e890d466f7adb383a3d38f685 (diff)
parentc0227ea0bbf8fdee8a3e57c168700fc5bb7357ab (diff)
Merge pull request #4189 from nextcloud/feature/noid/less-participant-queries
Less participant queries
Diffstat (limited to 'lib/Controller/PageController.php')
-rw-r--r--lib/Controller/PageController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index ba59d0f71..7174d5278 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -185,7 +185,7 @@ class PageController extends Controller {
if ($token !== '') {
$room = null;
try {
- $room = $this->manager->getRoomByToken($token);
+ $room = $this->manager->getRoomByToken($token, $this->userId);
$notification = $this->notificationManager->createNotification();
$shouldFlush = $this->notificationManager->defer();
try {