From a5a79163e07b4285c52e6225b0a6df2aac6ed1bf Mon Sep 17 00:00:00 2001 From: John Sebastian Peterson Date: Sat, 26 Apr 2025 08:09:20 +0300 Subject: [PATCH] tnaflix: support m sub domain that google mobile return fix #9769 when searching from a phone google gives m not www. this was accidentally closed without explanation gh issue view --comments 9769 --- yt_dlp/extractor/tnaflix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/tnaflix.py b/yt_dlp/extractor/tnaflix.py index 22832e068e..706c5a29fe 100644 --- a/yt_dlp/extractor/tnaflix.py +++ b/yt_dlp/extractor/tnaflix.py @@ -221,7 +221,7 @@ class TNAEMPFlixBaseIE(TNAFlixNetworkBaseIE): class TNAFlixIE(TNAEMPFlixBaseIE): - _VALID_URL = r'https?://(?:www\.)?(?Ptnaflix)\.com/[^/]+/(?P[^/]+)/video(?P\d+)' + _VALID_URL = r'https?://(?:(?:m|www)\.)?(?Ptnaflix)\.com/[^/]+/(?P[^/]+)/video(?P\d+)' _TITLE_REGEX = r'(.+?) - (?:TNAFlix Porn Videos|TNAFlix\.com)'