mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Fix the subject of notifications
This commit is contained in:
parent
805f1d0096
commit
0d154595f8
2 changed files with 2 additions and 2 deletions
|
|
@ -141,7 +141,7 @@ class Manager implements IManager {
|
|||
|
||||
foreach ($notifiers as $notifier) {
|
||||
try {
|
||||
$notifier->prepare($notification, $languageCode);
|
||||
$notification = $notifier->prepare($notification, $languageCode);
|
||||
} catch (\InvalidArgumentException $e) {
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -248,7 +248,7 @@ class Notification implements INotification {
|
|||
* @since 8.2.0
|
||||
*/
|
||||
public function getParsedSubject() {
|
||||
return $this->messageParsed;
|
||||
return $this->subjectParsed;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue