Fixing not getting the html in the comment

This commit is contained in:
Jarzon
2017-02-02 07:53:18 -05:00
parent c180557f52
commit bbd80d4154

View File

@@ -550,7 +550,7 @@ SteamCommunity.prototype.getAllGroupComments = function(gid, from, count, callba
$selector = $(this).find(".commentthread_comment_text");
comment.commentId = $($selector).attr("id").replace("comment_content_", "");
comment.text = $($selector).text().trim();
comment.text = $($selector).html().trim();
comments.push(comment);
});