Skip to content

Commit

Permalink
Update onlyfans.py
Browse files Browse the repository at this point in the history
  • Loading branch information
UltimaHoarder committed Nov 7, 2020
1 parent 9c2d512 commit 3532278
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/onlyfans.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ def paid_content_scraper(api):
paid_contents = api.get_paid_content()
results = []
for paid_content in paid_contents:
author = paid_content["author"]
author = paid_content.get("author")
author = paid_content.get("fromUser",author)
subscription = create_subscription(author)
subscription.sessions = api.sessions
subscription.download_info["directory"] = j_directory
Expand Down

0 comments on commit 3532278

Please sign in to comment.