summary refs log tree commit diff
diff options
context:
space:
mode:
authorknapior <knapior93@gmail.com>2021-01-27 20:43:20 +0100
committerGitHub <noreply@github.com>2021-01-28 02:43:20 +0700
commit7b8fa658f88d53066f7a2ad00df19697552cf286 (patch)
treecab66a842efacb29d1b203b74f41bc3611beec0b
parentfd95fc33b13d732002d53c35521f17184d14cc21 (diff)
downloadyoutube-dl-7b8fa658f88d53066f7a2ad00df19697552cf286.tar.gz
youtube-dl-7b8fa658f88d53066f7a2ad00df19697552cf286.tar.xz
youtube-dl-7b8fa658f88d53066f7a2ad00df19697552cf286.zip
[cda] Improve birth validation detection (closes #14022) (#27929)
Co-authored-by: Sergey M <dstftw@gmail.com>
-rw-r--r--youtube_dl/extractor/cda.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/cda.py b/youtube_dl/extractor/cda.py
index d67900e62..6429454fb 100644
--- a/youtube_dl/extractor/cda.py
+++ b/youtube_dl/extractor/cda.py
@@ -96,7 +96,7 @@ class CDAIE(InfoExtractor):
             raise ExtractorError('This video is only available for premium users.', expected=True)
 
         need_confirm_age = False
-        if self._html_search_regex(r'(<form[^>]+action="/a/validatebirth")',
+        if self._html_search_regex(r'(<form[^>]+action="[^"]*/a/validatebirth[^"]*")',
                                    webpage, 'birthday validate form', default=None):
             webpage = self._download_age_confirm_page(
                 url, video_id, note='Confirming age')