Skip to content

Commit

Permalink
fix(notifications): Fix last type of subject parameters
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Sep 17, 2024
1 parent ecd9215 commit 56147ae
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 @@ -617,7 +617,7 @@ protected function parseChatMessage(INotification $notification, Room $room, Par
}
$richSubjectParameters['message'] = [
'type' => 'highlight',
'id' => $message->getMessageId(),
'id' => (string)$message->getMessageId(),
'name' => $shortenMessage,
];
if ($notification->getSubject() === 'reminder') {
Expand Down

0 comments on commit 56147ae

Please sign in to comment.