Skip to content

Commit e8142c6

Browse files
authored
[Confluence] Make pagination work for fetching subpages of confluence page (atlassian-api#990)
Fixes: atlassian-api#989
1 parent da78d94 commit e8142c6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

atlassian/confluence.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ def _get_paged(self, url, params=None, data=None, flags=None, trailing=None, abs
7676
url = response.get("_links", {}).get("next")
7777
if url is None:
7878
break
79-
# From now on we have absolute URLs with parameters
80-
absolute = True
79+
# From now on we have relative URLs with parameters
80+
absolute = False
8181
# Params are now provided by the url
8282
params = {}
8383
# Trailing should not be added as it is already part of the url

0 commit comments

Comments
 (0)