Browse Source

that has since been deleted, ID to node

You were mentioned in a group chat by a user that has since been deleted

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
tags/v13.0.0beta2
Allan Nordhøy 6 years ago
parent
commit
011e05574f
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      apps/comments/lib/Notification/Notifier.php

+ 3
- 3
apps/comments/lib/Notification/Notifier.php View File

@@ -99,17 +99,17 @@ class Notifier implements INotifier {
$userFolder = $this->rootFolder->getUserFolder($notification->getUser());
$nodes = $userFolder->getById((int)$parameters[1]);
if(empty($nodes)) {
throw new \InvalidArgumentException('Cannot resolve file id to Node instance');
throw new \InvalidArgumentException('Cannot resolve file ID to node instance');
}
$node = $nodes[0];

if ($isDeletedActor) {
$notification->setParsedSubject($l->t(
'A (now) deleted user mentioned you in a comment on “%s”',
'You were mentioned on “%s”, in a comment by a user that has since been deleted',
[$node->getName()]
))
->setRichSubject(
$l->t('A (now) deleted user mentioned you in a comment on “{file}”'),
$l->t('You were mentioned in “{file}”, in a comment by a user that has since been deleted'),
[
'file' => [
'type' => 'file',

Loading…
Cancel
Save