[twitter] revert to using 'media' timeline by default (#4953)

This reverts commit a94f944148.
This commit is contained in:
Mike Fährmann
2024-01-09 23:19:39 +01:00
parent 5f9a98cf0f
commit 5c43098a1a
2 changed files with 2 additions and 2 deletions

View File

@@ -546,7 +546,7 @@ class TwitterTimelineExtractor(TwitterExtractor):
def _select_tweet_source(self):
strategy = self.config("strategy")
if strategy is None or strategy == "auto":
if self.retweets or self.replies or self.textonly:
if self.retweets or self.textonly:
return self.api.user_tweets
else:
return self.api.user_media