From 4fec8488589c828f47b1c0cf3fe6892036b9acf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sun, 15 Jan 2023 22:11:04 +0100 Subject: [PATCH] [twitter] use "browser": "firefox" by default (#3522) and reenable TLS 1.2 ciphers --- gallery_dl/extractor/twitter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/twitter.py b/gallery_dl/extractor/twitter.py index 1ea42521c0..ef30c24ef8 100644 --- a/gallery_dl/extractor/twitter.py +++ b/gallery_dl/extractor/twitter.py @@ -26,7 +26,7 @@ class TwitterExtractor(Extractor): cookiedomain = ".twitter.com" cookienames = ("auth_token",) root = "https://twitter.com" - tls12 = False + browser = "firefox" def __init__(self, match): Extractor.__init__(self, match)