diff options
author | Lesmiscore <nao20010128@gmail.com> | 2023-03-29 15:28:29 +0900 |
---|---|---|
committer | Lesmiscore <nao20010128@gmail.com> | 2023-03-29 15:28:29 +0900 |
commit | ab92d8651c48d247dfb7d3f0a824cc986e47c7ed (patch) | |
tree | 35dfcac1c050dc88ef69d61cc5e6799908c4ff63 | |
parent | 0f0875ed555514f32522a0f30554fb08825d5124 (diff) | |
download | hypervideo-pre-ab92d8651c48d247dfb7d3f0a824cc986e47c7ed.tar.lz hypervideo-pre-ab92d8651c48d247dfb7d3f0a824cc986e47c7ed.tar.xz hypervideo-pre-ab92d8651c48d247dfb7d3f0a824cc986e47c7ed.zip |
[extractor/iwara] Accept old URLs
Authored by: Lesmiscore
Closes #6669
-rw-r--r-- | yt_dlp/extractor/iwara.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/iwara.py b/yt_dlp/extractor/iwara.py index 23f92786f..ae2960af0 100644 --- a/yt_dlp/extractor/iwara.py +++ b/yt_dlp/extractor/iwara.py @@ -15,7 +15,7 @@ from ..utils import ( class IwaraIE(InfoExtractor): IE_NAME = 'iwara' - _VALID_URL = r'https?://(?:www\.)?iwara\.tv/video/(?P<id>[a-zA-Z0-9]+)' + _VALID_URL = r'https?://(?:www\.|ecchi\.)?iwara\.tv/videos?/(?P<id>[a-zA-Z0-9]+)' _TESTS = [{ # this video cannot be played because of migration 'only_matching': True, |