Skip to content

Commit

Permalink
Remove file id check
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Oct 27, 2024
1 parent 8680a61 commit b8055ae
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,6 @@ def db_get_files_series(self) -> list[list[SeriesFilesModel, bool, bool]] | None
is False
)
else:
condition &= self.model_file.EpisodeFileId == 0
condition &= self.model_file.Searched is False
todays_condition = copy(condition)
todays_condition &= self.model_file.AirDateUtc > (
Expand Down Expand Up @@ -1512,7 +1511,6 @@ def db_get_files_episodes(self) -> list[list[EpisodeFilesModel, bool, bool]] | N
is False
)
else:
condition &= self.model_file.EpisodeFileId == 0
condition &= self.model_file.Searched is False
today_condition = copy(condition)
today_condition &= self.model_file.AirDateUtc > (
Expand Down Expand Up @@ -1585,7 +1583,6 @@ def db_get_files_movies(self) -> list[list[MoviesFilesModel, bool, bool]] | None
)
else:
self.logger.trace("Condition 5")
condition &= self.model_file.MovieFileId == 0
condition &= self.model_file.Searched is False
if self.search_by_year:
self.logger.trace("Condition 6")
Expand Down

0 comments on commit b8055ae

Please sign in to comment.