Index: channels/jamendo.py ================================================================== --- channels/jamendo.py +++ channels/jamendo.py @@ -377,11 +377,11 @@ "offset": 0, "limit": 200, }.items()) + list(params.items()) ) while (params["offset"] < max) and (len(r) % 200 == 0): - data = ahttp.get(self.api_base + method, params) + data = ahttp.get(self.api_base + method, params, encoding="utf-8") data = json.loads(data) if data: r += data["results"] else: return r