Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion lib/Activity/Listener.php
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,11 @@ public function generateInvitationActivity(Room $room, array $participants): voi
return;
}

// We know the new participant is in the room,
// so skip loading them just to make sure they can read it.
// Must be overwritten later on for one-to-one chats.
$roomName = $room->getDisplayName($actorId);

foreach ($participants as $participant) {
if ($participant['actorType'] !== Attendee::ACTOR_USERS) {
// No user => no activity
Expand All @@ -244,7 +249,10 @@ public function generateInvitationActivity(Room $room, array $participants): voi
}

try {
$roomName = $room->getDisplayName($participant['actorId']);
if ($room->getType() === Room::TYPE_ONE_TO_ONE) {
// Overwrite the room name with the other participant
$roomName = $room->getDisplayName($participant['actorId']);
}
$event
->setObject('room', $room->getId(), $roomName)
->setSubject('invitation', [
Expand Down