pull/154/merge
null3000 3 years ago committed by GitHub
commit 2d717f483e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -32,13 +32,14 @@ def get_askreddit_threads():
content["comments"] = []
for top_level_comment in submission.comments:
content["comments"].append(
if not top_level_comment.stickied:
content["comments"].append(
{
"comment_body": top_level_comment.body,
"comment_url": top_level_comment.permalink,
"comment_id": top_level_comment.id,
}
)
)
except AttributeError as e:
pass

Loading…
Cancel
Save