download_webpage() without _handle

This commit is contained in:
dirkf 2025-05-04 13:50:53 +01:00 committed by GitHub
parent c4e5b23f86
commit 35857bf76b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -356,7 +356,7 @@ class VPROIE(NPOIE):
def _real_extract(self, url):
video_id = url.rstrip('/').split('/')[-1]
page, _ = self._download_webpage_handle(url, video_id)
page = self._download_webpage(url, video_id)
results = re.findall(r'data-media-id="([a-zA-Z0-9_]+)"\s', page)
formats = []
for result in results: