Skip to content

Commit

Permalink
fix(files_sharing): Fix share expiry notification rich message
Browse files Browse the repository at this point in the history
Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin committed Sep 1, 2024
1 parent 41f8543 commit 5be384e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/files_sharing/lib/Notification/Notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ protected function parseShareExpiration(IShare $share, INotification $notificati
[
'node' => [
'type' => 'file',
'id' => $node->getId(),
'id' => (string)$node->getId(),
'name' => $node->getName(),
'path' => $path,
'path' => (string)$path,
],
]
);
Expand Down

0 comments on commit 5be384e

Please sign in to comment.