fix: Content of comments not being saved Radiquum/furaffinity-dl#5

This commit is contained in:
Kentai Radiquum 2024-08-08 12:52:45 +05:00
parent 848c2697f4
commit 46647087e9
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -226,7 +226,7 @@ def create_metadata(output, data, s, title, filename):
{
"cid": int(comment.find(class_="comment-link").attrs.get("href")[5:]),
"parent_cid": parent_cid,
"content": comment.find(class_="comment_text").contents[0].strip(),
"content": comment.find(class_="user-submitted-links").text.strip(),
"username": comment.find(class_="comment_username").text,
"date": comment.find(class_="popup_date").attrs.get("title"),
}