We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecec168 commit 25a9ccbCopy full SHA for 25a9ccb
feedly/api_client/enterprise/indicators_of_compromise.py
@@ -79,9 +79,7 @@ def stream_bundles(self) -> Iterable[T]:
79
if self.max_batches and batch_count >= self.max_batches:
80
return
81
82
- if (
83
- not self.newer_than and not self.older_than
84
- ) or "link" not in resp.headers:
+ if not self.newer_than or "link" not in resp.headers:
85
86
next_url = resp.headers["link"][1:].split(">")[0]
87
continuation = parse_qs(next_url)["continuation"][0]
0 commit comments