diff --git a/www/pad/comments.js b/www/pad/comments.js index ac7ef6353..128784671 100644 --- a/www/pad/comments.js +++ b/www/pad/comments.js @@ -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; -}); \ No newline at end of file +});