We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95f5988 commit 1a4bd8fCopy full SHA for 1a4bd8f
src/jobs/search_handler.py
@@ -84,7 +84,7 @@ def _filter_wanted_items(self, items, queue):
84
return items[: self.job.max_concurrent_searches]
85
86
def _filter_already_downloading(self, wanted_items, queue):
87
- queue_ids = {q[self.arr.detail_item_id_key] for q in queue}
+ queue_ids = {q['detail_item_id'] for q in queue}
88
return [item for item in wanted_items if item["id"] not in queue_ids]
89
90
async def _trigger_search(self, items):
0 commit comments