diff --git a/docs/configuration.rst b/docs/configuration.rst index b844a4ec..ff9ed02b 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -2224,7 +2224,7 @@ extractor.twitter.cards Type ``bool`` or ``string`` Default - ``true`` + ``false`` Description Controls how to handle `Twitter Cards `__. diff --git a/docs/gallery-dl.conf b/docs/gallery-dl.conf index ba4fe2be..6e71d426 100644 --- a/docs/gallery-dl.conf +++ b/docs/gallery-dl.conf @@ -271,7 +271,7 @@ { "username": null, "password": null, - "cards": true, + "cards": false, "conversations": false, "pinned": false, "quoted": false, diff --git a/gallery_dl/extractor/twitter.py b/gallery_dl/extractor/twitter.py index e081e30f..cc5fb1a3 100644 --- a/gallery_dl/extractor/twitter.py +++ b/gallery_dl/extractor/twitter.py @@ -39,7 +39,7 @@ class TwitterExtractor(Extractor): self.pinned = self.config("pinned", False) self.quoted = self.config("quoted", False) self.videos = self.config("videos", True) - self.cards = self.config("cards", True) + self.cards = self.config("cards", False) self._user_cache = {} self._init_sizes()