mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
[extractor/stripchat] Don't modify input URL (#4781)
Authored by: dfaker
This commit is contained in:
parent
f26af78a8a
commit
76f2bb175d
@ -29,9 +29,7 @@ class StripchatIE(InfoExtractor):
|
||||
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
webpage = self._download_webpage(
|
||||
'https://stripchat.com/%s/' % video_id, video_id,
|
||||
headers=self.geo_verification_headers())
|
||||
webpage = self._download_webpage(url, video_id, headers=self.geo_verification_headers())
|
||||
|
||||
data = self._parse_json(
|
||||
self._search_regex(
|
||||
|
Loading…
Reference in New Issue
Block a user