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:
Diffstat (limited to 'lib/Manager.php')
-rw-r--r--lib/Manager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Manager.php b/lib/Manager.php
index e6efc5345..1005931c3 100644
--- a/lib/Manager.php
+++ b/lib/Manager.php
@@ -758,7 +758,7 @@ class Manager {
if ($row === false) {
$room = $this->createRoom(Room::CHANGELOG_CONVERSATION, $userId);
$room->setReadOnly(Room::READ_ONLY);
- $room->setListable(Room::LISTABLE_PARTICIPANTS);
+ $room->setListable(Room::LISTABLE_NONE);
$this->participantService->addUsers($room,[[
'actorType' => Attendee::ACTOR_USERS,
@@ -866,7 +866,7 @@ class Manager {
}
// FIXME: also check guest user case
- if ($room->getListable() === Room::LISTABLE_PARTICIPANTS) {
+ if ($room->getListable() === Room::LISTABLE_NONE) {
try {
if ($userId === '') {
$sessionId = $this->talkSession->getSessionForRoom($room->getToken());