Fix soundcloud _get

This commit is contained in:
nathom 2021-07-23 16:21:39 -07:00
parent 6cafc09328
commit 65aa1efc38

View file

@ -986,9 +986,9 @@ class SoundCloudClient(Client):
"app_version": "1626941202", "app_version": "1626941202",
"app_locale": "en", "app_locale": "en",
} }
if params is None: if param_arg is not None:
params = {} params.update(param_arg)
params["client_id"] = SOUNDCLOUD_CLIENT_ID
if no_base: if no_base:
url = path url = path
else: else: