Skip to content

Commit

Permalink
Search testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed May 29, 2024
1 parent 30fccab commit 999da4f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -1204,6 +1204,7 @@ def db_get_files(
elif self.type == "radarr":
movielist = self.db_get_files_movies()
for movies in movielist:
self.logger.trace("Get files: %s", movies[0].Title)
yield movies[0], movies[1], movies[2], False, len(movielist)

def db_maybe_reset_entry_searched_state(self):
Expand Down Expand Up @@ -1476,6 +1477,7 @@ def db_get_files_movies(
.execute()
):
entries.append([entry, False, False])
self.logger.trace("Get files movies: %s", entry.Title)
return entries

def db_get_request_files(self) -> Iterable[MoviesFilesModel | EpisodeFilesModel]:
Expand Down

0 comments on commit 999da4f

Please sign in to comment.