1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-02 22:21:05 +02:00

[soundcloud:search] Fix non-ASCII searches

This commit is contained in:
Sergey M․ 2015-11-21 20:55:48 +06:00
parent 7e1f5447e7
commit 4e3b303016

View File

@ -14,6 +14,7 @@
compat_urllib_parse,
)
from ..utils import (
encode_dict,
ExtractorError,
int_or_none,
unified_strdate,
@ -506,7 +507,7 @@ def _get_collection(self, endpoint, collection_id, **query):
for i in itertools.count():
if not next_url:
query['offset'] = i * results_per_page
data = compat_urllib_parse.urlencode(query)
data = compat_urllib_parse.urlencode(encode_dict(query))
next_url = '{0}{1}?{2}'.format(
self._API_V2_BASE, endpoint, data)