possible fix to #2365

This commit is contained in:
Julian Lam
2014-11-07 17:04:48 -05:00
parent d77bd638c4
commit f0b104fef0

View File

@@ -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;