From d4915900edf0b0b7cd2b8f5252076c5003c5dab2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Tue, 18 Mar 2025 15:00:48 +0100 Subject: [PATCH] [patreon] include subdomains in 'session_id' cookie check (#7188) --- gallery_dl/extractor/patreon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/patreon.py b/gallery_dl/extractor/patreon.py index f5a33d54..eae3a7b5 100644 --- a/gallery_dl/extractor/patreon.py +++ b/gallery_dl/extractor/patreon.py @@ -27,7 +27,7 @@ class PatreonExtractor(Extractor): _warning = True def _init(self): - if not self.cookies_check(("session_id",)): + if not self.cookies_check(("session_id",), subdomains=True): if self._warning: PatreonExtractor._warning = False self.log.warning("no 'session_id' cookie set")