Skip to content

Commit

Permalink
fix: torbox scraper missing setting issue fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
dreulavelle committed Sep 24, 2024
1 parent 57f23d6 commit f4619c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/program/scrapers/torbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self):
self.initialized = self.validate()
if not self.initialized:
return
self.rate_limiter = RateLimiter(max_calls=1, period=5) if self.settings.ratelimit else None
self.rate_limiter = RateLimiter(max_calls=1, period=5)
logger.success("TorBox Scraper is initialized")

def validate(self) -> bool:
Expand Down

0 comments on commit f4619c4

Please sign in to comment.