mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 01:03:04 +01:00
[ard] Encode url (Closes #3412)
This commit is contained in:
parent
0138968a6a
commit
b4f23afbd1
@ -44,7 +44,7 @@ def _real_extract(self, url):
|
||||
else:
|
||||
video_id = m.group('video_id')
|
||||
|
||||
webpage = self._download_webpage(url, video_id)
|
||||
webpage = self._download_webpage(url.encode('utf-8'), video_id)
|
||||
|
||||
title = self._html_search_regex(
|
||||
[r'<h1(?:\s+class="boxTopHeadline")?>(.*?)</h1>',
|
||||
|
Loading…
Reference in New Issue
Block a user