mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 17:18:01 +01:00
Decode the data requested to the api in utf-8.
This commit is contained in:
parent
4be0aa3539
commit
d1b7a24354
1 changed files with 1 additions and 1 deletions
|
@ -1472,7 +1472,7 @@ def _download_n_results(self, query, n):
|
|||
result_url = self._API_URL % (compat_urllib_parse.quote_plus(query), (50*pagenum)+1)
|
||||
request = compat_urllib_request.Request(result_url)
|
||||
try:
|
||||
data = compat_urllib_request.urlopen(request).read()
|
||||
data = compat_urllib_request.urlopen(request).read().decode('utf-8')
|
||||
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
|
||||
self._downloader.trouble(u'ERROR: unable to download API page: %s' % compat_str(err))
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue