Skip to content

Commit

Permalink
Fix bug in Marketplace client
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanlensky committed Dec 23, 2023
1 parent 10035a7 commit b9ad798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/marketplace/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def _search(
search_params: MarketplaceSearchParams,
) -> AsyncGenerator[MarketplaceListing, None]:
async with get_browser_page() as page:
_navigate_to_search_results(page, search_params.location, search_params.category)
await _navigate_to_search_results(page, search_params.location, search_params.category)

num_results = 0
while True: # loop while there are new results (scrolling down loads more results)
Expand Down

0 comments on commit b9ad798

Please sign in to comment.