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:
-rw-r--r--lib/Controller/RoomController.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/Controller/RoomController.php b/lib/Controller/RoomController.php
index eab34d84a..45403111f 100644
--- a/lib/Controller/RoomController.php
+++ b/lib/Controller/RoomController.php
@@ -286,9 +286,9 @@ class RoomController extends OCSController {
return new DataResponse(['token' => $room->getToken()], Http::STATUS_OK);
} catch (RoomNotFoundException $e) {
$room = $this->manager->createOne2OneRoom();
- $room->addParticipant($currentUser, Participant::OWNER);
+ $room->addParticipant($currentUser->getUID(), Participant::OWNER);
- $room->addParticipant($targetUser, Participant::OWNER);
+ $room->addParticipant($targetUser->getUID(), Participant::OWNER);
$this->createNotification($currentUser, $targetUser, $room);
return new DataResponse(['token' => $room->getToken()], Http::STATUS_CREATED);
@@ -313,7 +313,7 @@ class RoomController extends OCSController {
// Create the room
$room = $this->manager->createGroupRoom($targetGroup->getGID());
- $room->addParticipant($currentUser, Participant::OWNER);
+ $room->addParticipant($currentUser->getUID(), Participant::OWNER);
$usersInGroup = $targetGroup->getUsers();
foreach ($usersInGroup as $user) {
@@ -335,11 +335,9 @@ class RoomController extends OCSController {
* @return DataResponse
*/
protected function createPublicRoom() {
- $currentUser = $this->userManager->get($this->userId);
-
// Create the room
$room = $this->manager->createPublicRoom();
- $room->addParticipant($currentUser, Participant::OWNER);
+ $room->addParticipant($this->userId, Participant::OWNER);
return new DataResponse(['token' => $room->getToken()], Http::STATUS_CREATED);
}