aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-02-14 11:04:50 +0100
committerChocobozzz <me@florianbigard.com>2019-02-14 11:04:50 +0100
commit6e8cf67a6f7c20f9e43dd7bfc111f6b494e11c50 (patch)
treed800773db62d13efeae8ede3a2cddc30f8739d86 /server/lib
parentbf12db2497689cb3fcf648ef6fc07a699d1b20d8 (diff)
downloadPeerTube-6e8cf67a6f7c20f9e43dd7bfc111f6b494e11c50.tar.gz
PeerTube-6e8cf67a6f7c20f9e43dd7bfc111f6b494e11c50.tar.zst
PeerTube-6e8cf67a6f7c20f9e43dd7bfc111f6b494e11c50.zip
Fix mention notification with a remote account
Diffstat (limited to 'server/lib')
-rw-r--r--server/lib/notifier.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/lib/notifier.ts b/server/lib/notifier.ts
index d1b331346..2fa320cd7 100644
--- a/server/lib/notifier.ts
+++ b/server/lib/notifier.ts
@@ -148,6 +148,8 @@ class Notifier {
148 148
149 private async notifyOfCommentMention (comment: VideoCommentModel) { 149 private async notifyOfCommentMention (comment: VideoCommentModel) {
150 const usernames = comment.extractMentions() 150 const usernames = comment.extractMentions()
151 logger.debug('Extracted %d username from comment %s.', usernames.length, comment.url, { usernames, text: comment.text })
152
151 let users = await UserModel.listByUsernames(usernames) 153 let users = await UserModel.listByUsernames(usernames)
152 154
153 if (comment.Video.isOwned()) { 155 if (comment.Video.isOwned()) {