revert: use _match_valid_url function

This commit is contained in:
Petr Vaněk 2022-02-12 11:55:13 +01:00 committed by dirkf
parent 29f7bfc4d7
commit 8088ce036a

View file

@ -1,5 +1,6 @@
# coding: utf-8
import json
import re
from .common import InfoExtractor
from ..utils import (
@ -55,7 +56,7 @@ class StreamCZIE(InfoExtractor):
}
def _real_extract(self, url):
display_id, video_id = self._match_valid_url(url).groups()
display_id, video_id = re.match(self._VALID_URL, url).groups()
data = self._download_json(
'https://www.televizeseznam.cz/api/graphql', video_id, 'Downloading GraphQL result',