From f0b104fef0c0dba25ef03fa4689cb2bea3a8c39f Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 7 Nov 2014 17:04:48 -0500 Subject: [PATCH] possible fix to #2365 --- src/socket.io/posts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socket.io/posts.js b/src/socket.io/posts.js index 853a9a2bf5..c28064052b 100644 --- a/src/socket.io/posts.js +++ b/src/socket.io/posts.js @@ -146,7 +146,7 @@ SocketPosts.sendNotificationToPostOwner = function(pid, fromuid, notification) { async.parallel({ username: async.apply(user.getUserField, fromuid, 'username'), topicTitle: async.apply(topics.getTopicField, postData.tid, 'title'), - postContent: async.apply(postTools.parse, postData.content) + postContent: async.apply(postTools.parsePost, postData, postData.uid) }, function(err, results) { if (err) { return;