Skip to content

Commit

Permalink
Debugging sonarr series search
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Nov 20, 2023
1 parent d2d65fa commit 9a4b5b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -1224,13 +1224,14 @@ def db_get_files_series(
if not self.do_upgrade_search:
condition = self.series_file_model.Searched == False
else:
condition &= self.series_file_model.Upgrade == False
condition = self.series_file_model.Upgrade == False
for entry_ in (
self.series_file_model.select()
.where(condition)
.order_by(self.series_file_model.EntryId.asc())
.execute()
):
self.logger.trace("Getting %s | %s", entry_.Title, entry_.Searched)
yield entry_, False, False

def db_get_files_episodes(
Expand Down

0 comments on commit 9a4b5b0

Please sign in to comment.