Radiquum / furaffinity-dl

FurAffinity Downloader, now with 100% more Python
MIT License
6 stars 1 forks source link

Content of comments not being saved #5

Closed loglow closed 3 months ago

loglow commented 3 months ago

All the comments in the downloaded metadata were showing up blank, like:

"content": "",

I changed line 229 in download.py from:

"content": comment.find(class_="comment_text").contents[0].strip(),

To:

"content": comment.find(class_="user-submitted-links").text.strip(),

And now the content of each comment is showing up correctly.

Radiquum commented 3 months ago

Thank you for the contribution. I have pushed it to the python branch. Please let me know if something else is working not as expected, since I didn't really use it as much myself anymore.