mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
fix: Content of comments not being saved Radiquum/furaffinity-dl#5
This commit is contained in:
parent
848c2697f4
commit
46647087e9
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ def create_metadata(output, data, s, title, filename):
|
||||||
{
|
{
|
||||||
"cid": int(comment.find(class_="comment-link").attrs.get("href")[5:]),
|
"cid": int(comment.find(class_="comment-link").attrs.get("href")[5:]),
|
||||||
"parent_cid": parent_cid,
|
"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,
|
"username": comment.find(class_="comment_username").text,
|
||||||
"date": comment.find(class_="popup_date").attrs.get("title"),
|
"date": comment.find(class_="popup_date").attrs.get("title"),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue