diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-08-01 11:33:32 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-08-03 15:30:11 -0700 |
commit | 7381c80cafcfbb9584f6f247049f1bdcc91acc05 (patch) | |
tree | c28925cc893e97761f541fa3df209fa424444997 | |
parent | 7beef657e4c6b1b9f24f03a224c61f6cbff6c723 (diff) | |
download | nextcloud-server-7381c80cafcfbb9584f6f247049f1bdcc91acc05.tar.gz nextcloud-server-7381c80cafcfbb9584f6f247049f1bdcc91acc05.zip |
fix: remove unnecessary parsed subject
Signed-off-by: Christopher Ng <chrng8@gmail.com>
-rw-r--r-- | apps/files_reminders/lib/Notification/Notifier.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/files_reminders/lib/Notification/Notifier.php b/apps/files_reminders/lib/Notification/Notifier.php index 6e639b78c1b..2a919d42cae 100644 --- a/apps/files_reminders/lib/Notification/Notifier.php +++ b/apps/files_reminders/lib/Notification/Notifier.php @@ -102,11 +102,6 @@ class Notifier implements INotifier { ], ], ) - ->setParsedSubject(str_replace( - ['{name}'], - [$node->getName()], - $subject, - )) ->setLink($link); $label = match ($node->getType()) { |