From 46647087e98db9b549b19802556b2ef5c5b8829b Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Thu, 8 Aug 2024 12:52:45 +0500 Subject: [PATCH] fix: Content of comments not being saved Radiquum/furaffinity-dl#5 --- Modules/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/download.py b/Modules/download.py index c34336e..d57fe40 100644 --- a/Modules/download.py +++ b/Modules/download.py @@ -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"), }