summaryrefslogtreecommitdiffstats
path: root/lib/private/notification/notification.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-09-02 13:09:46 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-09-08 09:01:01 +0200
commit0d154595f81e9c181a73ee44650fffe78bccc002 (patch)
tree53e3c981dfddc5f56fbe66d3c0ed8ec30fce7d84 /lib/private/notification/notification.php
parent805f1d0096205d346173ab4c0cf314e1c95eba2f (diff)
downloadnextcloud-server-0d154595f81e9c181a73ee44650fffe78bccc002.tar.gz
nextcloud-server-0d154595f81e9c181a73ee44650fffe78bccc002.zip
Fix the subject of notifications
Diffstat (limited to 'lib/private/notification/notification.php')
-rw-r--r--lib/private/notification/notification.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/notification/notification.php b/lib/private/notification/notification.php
index f5171f150c6..5151b5546a8 100644
--- a/lib/private/notification/notification.php
+++ b/lib/private/notification/notification.php
@@ -248,7 +248,7 @@ class Notification implements INotification {
* @since 8.2.0
*/
public function getParsedSubject() {
- return $this->messageParsed;
+ return $this->subjectParsed;
}
/**