Skip to content

Commit

Permalink
Merge pull request #13256 from nextcloud/followup/13200/fix-notificat…
Browse files Browse the repository at this point in the history
…ion-id-parsing

fix(notification): Fix missing cast of id to string
  • Loading branch information
nickvergessen authored Sep 11, 2024
2 parents a35864e + e489dd2 commit b7eb5b2
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 b7eb5b2

Please sign in to comment.