Skip to content

Commit ebfe901

Browse files
committed
Fix: Provide default value for objects in TAXIIFeed response handling
1 parent 7db63d8 commit ebfe901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReversingLabs/SDK/ticloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6193,7 +6193,7 @@ def get_objects_aggregated(self, api_root, collection_id, result_limit=500, adde
61936193

61946194
response_json = response.json()
61956195

6196-
objects = response_json.get("objects")
6196+
objects = response_json.get("objects", [])
61976197
results.extend(objects)
61986198

61996199
next_page = response_json.get("next")

0 commit comments

Comments
 (0)