From 7bad952c714fabe2a69b0b615940b711d9040c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20=C5=A0upienis?= Date: Tue, 9 Jul 2024 19:35:37 +0300 Subject: [PATCH] Update yt_dlp/extractor/tvplay.py Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com> --- yt_dlp/extractor/tvplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/tvplay.py b/yt_dlp/extractor/tvplay.py index e22a3bdbb..eb3f49ce1 100644 --- a/yt_dlp/extractor/tvplay.py +++ b/yt_dlp/extractor/tvplay.py @@ -271,7 +271,7 @@ class TVPlayHomeIE(InfoExtractor): }] def _real_extract(self, url): - country, category, video_id = self._match_valid_url(url).groups() + country, category, video_id = self._match_valid_url(url).group('country', 'category', 'id') api_path = { 'live': 'lives',