From bbd80d4154f8d6d3af2e38d9d0a7520e791d3d4a Mon Sep 17 00:00:00 2001 From: Jarzon Date: Thu, 2 Feb 2017 07:53:18 -0500 Subject: [PATCH] Fixing not getting the html in the comment --- components/groups.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/groups.js b/components/groups.js index 845a000..d0e5c7b 100644 --- a/components/groups.js +++ b/components/groups.js @@ -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); });