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>2022-05-16 16:10:15 +0300
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2022-05-16 22:25:57 +0300
commita053885b719e547c7f556ab4ce5d39c0692fe9e1 (patch)
tree199ad3ba22baff8adf94caae00e9b07ad3d48429 /lib/Service
parent48be216fe3a7cebc765b53a601b0fc84ae57158c (diff)
Cache display name of owner as well
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Service')
-rw-r--r--lib/Service/RoomService.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Service/RoomService.php b/lib/Service/RoomService.php
index b8263d76b..9f3eb125e 100644
--- a/lib/Service/RoomService.php
+++ b/lib/Service/RoomService.php
@@ -139,6 +139,7 @@ class RoomService {
$this->participantService->addUsers($room, [[
'actorType' => Attendee::ACTOR_USERS,
'actorId' => $owner->getUID(),
+ 'displayName' => $owner->getDisplayName(),
'participantType' => Participant::OWNER,
]], null);
}