diff --git a/pontos/github/api/client.py b/pontos/github/api/client.py index 19617c895..c9733f226 100644 --- a/pontos/github/api/client.py +++ b/pontos/github/api/client.py @@ -154,7 +154,9 @@ async def get_all( next_url = _get_next_url(response) while next_url: - response = await self.get(next_url, params=params) + # Workaround for https://github.com/encode/httpx/issues/3433 + new_params = httpx.URL(next_url).params.merge(params) + response = await self.get(next_url, params=new_params) yield response