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>2018-10-04 17:01:17 +0300
committerJoas Schilling <coding@schilljs.com>2018-10-04 17:01:17 +0300
commitf39142cc1fa8b6987504ee0db0a6357e8cb6f46d (patch)
tree146884acdd5abf6687f94e3c1a9958c48eae2337 /lib/Notification
parent7e1de89fd8b1726e73d747eda324b138b4c89eb3 (diff)
Fix unit tests
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 d9cd378ff..35a07aa25 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -174,7 +174,7 @@ class Notifier implements INotifier {
}
$recipient = $this->userManager->get($notification->getUser());
- list($richMessage, $richMessageParameters) = $this->messageParser->parseMessage($comment, $l, $recipient);
+ list($richMessage, $richMessageParameters) = $this->messageParser->parseMessage($room, $comment, $l, $recipient);
$placeholders = $replacements = [];
foreach ($richMessageParameters as $placeholder => $parameter) {