Skip to content

Commit 1398186

Browse files
authored
Fix paging for APIs with parameters. (#841)
1 parent ce6075d commit 1398186

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

atlassian/bitbucket/cloud/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ def _get_paged(
7676
url = response.get("next")
7777
if url is None:
7878
break
79-
# From now on we have absolute URLs
79+
# From now on we have absolute URLs with parameters
8080
absolute = True
81+
params = None
8182

8283
return

0 commit comments

Comments
 (0)