mirror of
https://github.com/DoctorMcKay/node-steamcommunity.git
synced 2026-08-19 13:13:28 +08:00
Fixing not getting the html in the comment
This commit is contained in:
@@ -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);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user