Fix reply notifications with mentions

pull/1/head
yflory 2020-05-05 15:12:47 +02:00
parent 74eb4ffc6d
commit 2cf46328a5
1 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ define([
var data = others[id];
Env.common.mailbox.sendTo("COMMENT_REPLY", {
channel: privateData.channel,
comment: data.comment,
comment: data.comment.replace(/<[^>]*>/g, ''),
content: data.content
}, {
channel: data.notifications,
@ -928,4 +928,4 @@ define([
};
return Comments;
});
});