Skip to content

Commit

Permalink
Merge pull request #13257 from nextcloud/backport/13256/stable29
Browse files Browse the repository at this point in the history
[stable29] fix(notification): Fix missing cast of id to string
  • Loading branch information
nickvergessen committed Sep 11, 2024
2 parents 82e0099 + 303f029 commit 388dc77
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 @@ -580,7 +580,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 388dc77

Please sign in to comment.