Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/group default objects #841

Merged
merged 5 commits into from
Sep 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correcting #687
  • Loading branch information
SteveMcGrath committed Sep 19, 2024
commit fe8142a6bfd3a2410aceae77657ff3188cd303b0
2 changes: 2 additions & 0 deletions tenable/nessus/iterators/pagination.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ def _get_page(self):
query['offset'] = self.offset
resp = self._api.get(self.path, params=query)
self.page = resp[self.envelope]
if self.page is None:
self.page = []
self.offset += self.limit