aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/awaan.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-06-06 15:05:07 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-06-06 15:05:07 +0530
commitd3d8d8184aafc22ed11edcd3ac175482fbb468e7 (patch)
tree884950a5a1a7d2ede1623422dfca09e4b33145a8 /yt_dlp/extractor/awaan.py
parente85a39717a233ed5d0660d6c2271ee32daf4bc82 (diff)
downloadhypervideo-pre-d3d8d8184aafc22ed11edcd3ac175482fbb468e7.tar.lz
hypervideo-pre-d3d8d8184aafc22ed11edcd3ac175482fbb468e7.tar.xz
hypervideo-pre-d3d8d8184aafc22ed11edcd3ac175482fbb468e7.zip
[extractor] Fix pre-checking archive for some extractors
The `id` regex group must be present for `_match_id` and pre-checking archive to work correctly
Diffstat (limited to 'yt_dlp/extractor/awaan.py')
-rw-r--r--yt_dlp/extractor/awaan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/awaan.py b/yt_dlp/extractor/awaan.py
index 3a7700cd4..822136dfb 100644
--- a/yt_dlp/extractor/awaan.py
+++ b/yt_dlp/extractor/awaan.py
@@ -19,7 +19,7 @@ from ..utils import (
class AWAANIE(InfoExtractor):
- _VALID_URL = r'https?://(?:www\.)?(?:awaan|dcndigital)\.ae/(?:#/)?show/(?P<show_id>\d+)/[^/]+(?:/(?P<video_id>\d+)/(?P<season_id>\d+))?'
+ _VALID_URL = r'https?://(?:www\.)?(?:awaan|dcndigital)\.ae/(?:#/)?show/(?P<show_id>\d+)/[^/]+(?:/(?P<id>\d+)/(?P<season_id>\d+))?'
def _real_extract(self, url):
show_id, video_id, season_id = re.match(self._VALID_URL, url).groups()