Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-06-27 15:58:57 +0300
committerJoas Schilling <coding@schilljs.com>2019-06-27 15:58:57 +0300
commit0fb7a8cb1991c0673cf3a3a5e59a1f502dfe03e0 (patch)
tree4b3118d4d30d3e4b41c3d3457524c4751e158c0e /lib/Notification
parentaf5173b2427f6ad7a101d051ec959794d1b0662a (diff)
Allow longer chat messages
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Notification')
-rw-r--r--lib/Notification/Notifier.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php
index b1f5f9033..58c252fac 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -146,7 +146,7 @@ class Notifier implements INotifier {
}
return $this->parseCall($notification, $room, $l);
}
- if ($subject === 'mention' || $subject === 'chat') {
+ if ($subject === 'mention' || $subject === 'chat') {
return $this->parseChatMessage($notification, $room, $participant, $l);
}