Skip to content

Commit 7264f5f

Browse files
committed
fix(files_sharing): Fix share expiry notification rich message
Signed-off-by: provokateurin <kate@provokateurin.de>
1 parent 72da1de commit 7264f5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/files_sharing/lib/Notification/Notifier.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ protected function parseShareExpiration(IShare $share, INotification $notificati
126126
[
127127
'node' => [
128128
'type' => 'file',
129-
'id' => $node->getId(),
129+
'id' => (string)$node->getId(),
130130
'name' => $node->getName(),
131-
'path' => $path,
131+
'path' => (string)$path,
132132
],
133133
]
134134
);

0 commit comments

Comments
 (0)