Skip to content

Commit

Permalink
refactor: remove hardcoded endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
NTFSvolume committed Jan 27, 2025
1 parent 42f6cd3 commit de188b5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cyberdrop_dl/scraper/crawlers/cyberfile_crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def __init__(self, manager: Manager, site: str) -> None:
self.primary_base_domain = self.PRIMARY_BASE_DOMAINS.get(site, URL(f"https://{site}"))
self.api_load_files = self.primary_base_domain / "account/ajax/load_files"
self.api_details = self.primary_base_domain / "account/ajax/file_details"
self.api_details = URL("https://iceyfile.com/account/ajax/file_details")
self.api_password_process = self.primary_base_domain / "ajax/folder_password_process"
self.request_limiter = AsyncLimiter(5, 1)

Expand Down

0 comments on commit de188b5

Please sign in to comment.