Skip to content

Commit

Permalink
Further testing upgrade searches
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Dec 10, 2024
1 parent 863d79e commit 6f886ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -1584,10 +1584,10 @@ def db_get_files_movies(self) -> list[list[MoviesFilesModel, bool, bool]] | None
return None
if self.type == "radarr":
condition = self.model_file.Year.is_null(False)
if self.do_upgrade_search:
self.logger.trace("Condition 1")
condition &= self.model_file.Upgrade == False
else:
# if self.do_upgrade_search:
# self.logger.trace("Condition 1")
# condition &= self.model_file.Upgrade == False
if not self.do_upgrade_search:
if self.quality_unmet_search and not self.custom_format_unmet_search:
self.logger.trace("Condition 2")
condition &= (
Expand Down

0 comments on commit 6f886ac

Please sign in to comment.