use correct parts list

This commit is contained in:
flukx 2024-08-18 09:34:09 +02:00
parent 696a13acac
commit dbd2b68a7d

View file

@ -230,7 +230,7 @@ def search_page() -> None:
except asyncio.exceptions.CancelledError:
# the next letter was already typed, do not search and rerender for this query
return
query = asyncio.create_task(find_parts(parts, event.value))
query = asyncio.create_task(find_parts(gl_parts, event.value))
running_queries.append(query)
try:
start = time.monotonic()