Skip to content

Commit

Permalink
Fixed series search error
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Nov 15, 2023
1 parent 3f2f8b7 commit 2b07146
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -1219,6 +1219,10 @@ def db_get_files_series(
for i1, i2, i3 in self._search_todays(condition):
if i1 is not None:
yield i1, i2, i3
if not self.do_upgrade_search:
condition = self.series_file_model.Searched == False
else:
condition &= self.model_file.Upgrade == False
for entry_ in (
self.series_file_model.select()
.where(condition)
Expand Down

0 comments on commit 2b07146

Please sign in to comment.