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
path: root/lib/Model
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-02-15 16:28:48 +0300
committerJoas Schilling <coding@schilljs.com>2021-02-15 16:28:48 +0300
commit19e6f37dd644cbc5fbe89cc80b971297a24269fc (patch)
treec7a80a349dbe7d7de96ba9069048c90e2d9527f9 /lib/Model
parent97f0320190292f1bfb0b1f116740eced78601f88 (diff)
Also load the display name
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Model')
-rw-r--r--lib/Model/AttendeeMapper.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Model/AttendeeMapper.php b/lib/Model/AttendeeMapper.php
index 8bce0422f..1b928fc93 100644
--- a/lib/Model/AttendeeMapper.php
+++ b/lib/Model/AttendeeMapper.php
@@ -143,6 +143,7 @@ class AttendeeMapper extends QBMapper {
'room_id' => $row['room_id'],
'actor_type' => $row['actor_type'],
'actor_id' => $row['actor_id'],
+ 'display_name' => (string) $row['display_name'],
'pin' => $row['pin'],
'participant_type' => (int) $row['participant_type'],
'favorite' => (bool) $row['favorite'],