Skip to content

Commit a32f6d1

Browse files
committed
Confluence: get_all_pages_from_space add workaround #1547
1 parent eebf86e commit a32f6d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/confluence/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ def get_all_pages_from_space(
682682
all_pages.extend(results) # Add the current batch of pages to the list
683683

684684
# Break the loop if no more pages are available
685-
if len(results) < limit:
685+
if len(results) <= limit:
686686
break
687687

688688
# Increment the start index for the next batch

0 commit comments

Comments
 (0)