Skip to content

Commit

Permalink
Error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Jan 9, 2024
1 parent 2a1e05f commit e87394b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -1492,7 +1492,7 @@ def _db_request_update(self, request_ids: dict[str, set[int | str]]):
while completed:
try:
completed = False
movies = self.client.get_movies()
movies = self.client.get_movie()
except (
requests.exceptions.ChunkedEncodingError,
requests.exceptions.ContentDecodingError,
Expand Down Expand Up @@ -2169,7 +2169,7 @@ def db_update_single_series(
while completed:
try:
completed = False
movieData = self.client.get_movie(db_entry["tmdbId"])
movieData = self.client.get_movie(db_entry["id"])
except (
requests.exceptions.ChunkedEncodingError,
requests.exceptions.ContentDecodingError,
Expand Down

0 comments on commit e87394b

Please sign in to comment.