diff --git a/gallery_dl/extractor/subscribestar.py b/gallery_dl/extractor/subscribestar.py index b8025180..5d0ec46e 100644 --- a/gallery_dl/extractor/subscribestar.py +++ b/gallery_dl/extractor/subscribestar.py @@ -57,7 +57,9 @@ class SubscribestarExtractor(Extractor): while True: response = Extractor.request(self, url, **kwargs) - if response.history and "/verify_subscriber" in response.url: + if response.history and ( + "/verify_subscriber" in response.url or + "/age_confirmation_warning" in response.url): raise exception.StopExtraction( "HTTP redirect to %s", response.url)