Skip to content

Commit

Permalink
Debugging change
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Jan 9, 2024
1 parent 1b6bf73 commit d163a20
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 @@ -805,11 +805,11 @@ def _process_failed_individual(self, hash_: str, entry: int, skip_blacklist: set
if hash_ in self.recently_queue:
del self.recently_queue[hash_]
object_id = self.requeue_cache.get(entry)
self.logger.debug("object_id:%s | object_ids:%s")
if self.re_search and object_id:
if self.type == "sonarr":
object_ids = object_id
for object_id in object_ids:
self.logger.debug("object_id:%s | object_ids:%s", object_id, object_ids)
completed = True
while completed:
try:
Expand Down Expand Up @@ -2366,6 +2366,7 @@ def maybe_do_search(
if todays
else ""
)
self.refresh_download_queue()
if request or todays:
bypass_limit = True
if (not self.search_missing) or (file_model is None):
Expand Down

0 comments on commit d163a20

Please sign in to comment.