Skip to content

Commit 1a4bd8f

Browse files
committed
bugfix missing search
1 parent 95f5988 commit 1a4bd8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jobs/search_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def _filter_wanted_items(self, items, queue):
8484
return items[: self.job.max_concurrent_searches]
8585

8686
def _filter_already_downloading(self, wanted_items, queue):
87-
queue_ids = {q[self.arr.detail_item_id_key] for q in queue}
87+
queue_ids = {q['detail_item_id'] for q in queue}
8888
return [item for item in wanted_items if item["id"] not in queue_ids]
8989

9090
async def _trigger_search(self, items):

0 commit comments

Comments
 (0)