diff --git a/streamrip/client/tidal.py b/streamrip/client/tidal.py index d0853bb0..1dc58304 100644 --- a/streamrip/client/tidal.py +++ b/streamrip/client/tidal.py @@ -18,9 +18,9 @@ BASE = "https://api.tidalhifi.com/v1" AUTH_URL = "https://auth.tidal.com/v1/oauth2" -CLIENT_ID = base64.b64decode("elU0WEhWVmtjMnREUG80dA==").decode("iso-8859-1") +CLIENT_ID = base64.b64decode("ZlgySnhkbW50WldLMGl4VA==").decode("iso-8859-1") CLIENT_SECRET = base64.b64decode( - "VkpLaERGcUpQcXZzUFZOQlY2dWtYVEptd2x2YnR0UDd3bE1scmM3MnNlND0=", + "MU5tNUFmREFqeHJnSkZKYktOV0xlQXlLR1ZHbUlOdVhQUExIVlhBdnhBZz0=", ).decode("iso-8859-1") AUTH = aiohttp.BasicAuth(login=CLIENT_ID, password=CLIENT_SECRET) STREAM_URL_REGEX = re.compile( @@ -353,7 +353,7 @@ async def _api_request(self, path: str, params=None, base: str = BASE) -> dict: async with self.rate_limiter: async with self.session.get(f"{base}/{path}", params=params) as resp: if resp.status == 404: - logger.warning("TIDAL: track not found", resp) + logger.warning("TIDAL: track not found %s", resp) raise NonStreamableError("TIDAL: Track not found") resp.raise_for_status() return await resp.json()