[twitter] change default value for 'videos' to 'true'

Every other 'videos' option defaulted to 'true', except Twitter.
This commit is contained in:
Mike Fährmann 2020-02-14 01:03:42 +01:00
parent ab13f81fd7
commit 74e684e828
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
3 changed files with 3 additions and 3 deletions

View File

@ -1153,7 +1153,7 @@ extractor.twitter.videos
------------------------
=========== =====
Type ``bool`` or ``string``
Default ``false``
Default ``true``
Description Control video download behavior.
* ``true``: Download videos and use `youtube-dl`_ to handle

View File

@ -151,7 +151,7 @@
"content": false,
"retweets": true,
"twitpic": false,
"videos": false
"videos": true
},
"vsco":
{

View File

@ -34,7 +34,7 @@ class TwitterExtractor(Extractor):
self.retweets = self.config("retweets", True)
self.twitpic = self.config("twitpic", False)
self.content = self.config("content", False)
self.videos = self.config("videos", False)
self.videos = self.config("videos", True)
if self.content:
self._emoji_sub = re.compile(