Skip to content

Commit

Permalink
fix(notification): Fix missing cast of id to string
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Sep 11, 2024
1 parent a35864e commit e489dd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Notification/Notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ protected function parseChatMessage(INotification $notification, Room $room, Par

$richSubjectCall = [
'type' => 'call',
'id' => $room->getId(),
'id' => (string)$room->getId(),
'name' => $room->getDisplayName($notification->getUser()),
'call-type' => $this->getRoomType($room),
'icon-url' => $this->avatarService->getAvatarUrl($room),
Expand Down

0 comments on commit e489dd2

Please sign in to comment.