1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-25 20:22:36 +01:00

[twitter] remove break (#5831)

This commit is contained in:
Mike Fährmann 2024-07-07 01:08:30 +02:00
parent 1656c9287d
commit 65385e09cb
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -632,7 +632,6 @@ class TwitterTimelineExtractor(TwitterExtractor):
tweet = None
for tweet in self.api.search_timeline(query + " filter:links"):
yield tweet
break
if tweet is not None:
return self._update_cursor(None)