From 26c3292538a551c3e73c7ba0245732a0610ae4e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Fri, 13 Jan 2023 16:05:43 +0100 Subject: [PATCH] [twitter] disable TLS 1.2 ciphers by default (#3522) --- gallery_dl/extractor/twitter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery_dl/extractor/twitter.py b/gallery_dl/extractor/twitter.py index 5c8b36f5..07c166cc 100644 --- a/gallery_dl/extractor/twitter.py +++ b/gallery_dl/extractor/twitter.py @@ -26,6 +26,7 @@ class TwitterExtractor(Extractor): cookiedomain = ".twitter.com" cookienames = ("auth_token",) root = "https://twitter.com" + tls12 = False def __init__(self, match): Extractor.__init__(self, match)