Skip to content

Commit

Permalink
[patch] v4 hotfix 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Jan 8, 2024
1 parent c064f8d commit 7cd81a8
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 @@ -1101,10 +1101,10 @@ def db_get_files(
yield series[0], series[1], series[2], series[2] is not True
elif self.type == "sonarr" and not self.series_search:
for episodes in self.db_get_files_episodes():
yield series[0], series[1], series[2], False
yield episodes[0], episodes[1], episodes[2], False
elif self.type == "radarr":
for movies in self.db_get_files_movies():
yield series[0], series[1], series[2], False
yield movies[0], movies[1], movies[2], False

def db_maybe_reset_entry_searched_state(self):
if self.type == "sonarr":
Expand Down

0 comments on commit 7cd81a8

Please sign in to comment.