Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 340107d

Browse files
Halfbrowsehalfbrowse
andauthored
[client] Fixed bug pertaining to issue (#623)
Co-authored-by: halfbrowse <[email protected]>
1 parent 3ef138e commit 340107d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pycti/entities/opencti_case_incident.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def list(self, **kwargs):
530530
data = self.opencti.process_multiple(result["data"]["caseIncidents"])
531531
final_data = final_data + data
532532
while result["data"]["caseIncidents"]["pageInfo"]["hasNextPage"]:
533-
after = result["date"]["caseIncidents"]["pageInfo"]["endCursor"]
533+
after = result["data"]["caseIncidents"]["pageInfo"]["endCursor"]
534534
self.opencti.app_logger.info("Listing Case Incidents", {"after": after})
535535
result = self.opencti.query(
536536
query,

0 commit comments

Comments
 (0)