Skip to content

Commit

Permalink
Corrected Geckodriver version
Browse files Browse the repository at this point in the history
  • Loading branch information
UltimaHoarder committed Mar 19, 2021
1 parent 092a750 commit 986338d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions apis/onlyfans/onlyfans.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ def __init__(self, identifier=None, identifier2=None, text="", only_links=True,
self.archived_stories = f"https://onlyfans.com/api2/v2/stories/archive/?limit=100&offset=0&order=publish_date_desc&app-token={app_token}"
self.paid_api = f"https://onlyfans.com/api2/v2/posts/paid?limit=100&offset=0&app-token={app_token}"
self.pay = f"https://onlyfans.com/api2/v2/payments/pay"
self.transactions = f"https://onlyfans.com/api2/v2/payments/all/transactions?limit=10&offset=0"
self.two_factor = f"https://onlyfans.com/api2/v2/users/otp/check"
full = {}
items = self.__dict__.items()
Expand Down
2 changes: 1 addition & 1 deletion extras/OFLogin/start_ofl.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def launch_browser(headers=None, user_agent=None, proxy=None, browser_type="Fire
driver = webdriver.Firefox(firefox_profile=profile, executable_path=driver_path,
options=opts, seleniumwire_options=options)
else:
message = f"Download geckodriver from https://github.com/mozilla/geckodriver/releases and paste it in {directory}"
message = f"Download geckodriver from https://github.com/mozilla/geckodriver/releases/tag/v0.27.0 and paste it in {directory}"
input(message)
else:
driver_path = os.path.join(directory, "chromedriver.exe")
Expand Down

0 comments on commit 986338d

Please sign in to comment.