From 41fbc20020637450f01335a9c99efc03b604d4da Mon Sep 17 00:00:00 2001 From: Christian Paul Date: Wed, 7 Apr 2021 21:42:55 +0200 Subject: [PATCH] [webtoons]: Add cookie rstagGDPR_DE=true (#1431) --- gallery_dl/extractor/webtoons.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery_dl/extractor/webtoons.py b/gallery_dl/extractor/webtoons.py index 1a262640..34d9f804 100644 --- a/gallery_dl/extractor/webtoons.py +++ b/gallery_dl/extractor/webtoons.py @@ -25,6 +25,7 @@ class WebtoonsExtractor(Extractor): match.groups() cookies = self.session.cookies cookies.set("pagGDPR", "true", domain=self.cookiedomain) + cookies.set("rstagGDPR_DE", "true", domain=self.cookiedomain) cookies.set("ageGatePass", "true", domain=self.cookiedomain) def request(self, url, **kwargs):