diff --git a/maloja/apis/native_v1.py b/maloja/apis/native_v1.py index 641f06d..2f1029d 100644 --- a/maloja/apis/native_v1.py +++ b/maloja/apis/native_v1.py @@ -232,7 +232,8 @@ def post_scrobble(artist:Multi=None,**keys): :param boolean nofix: Skip server-side metadata parsing. Optional. """ #artists = "/".join(artist) - keys['artists'] = [artist] if artist is not None else keys.get("artists") + # url multi args automatically become list + keys['artists'] = artist if artist is not None else keys.get("artists") keys['fix'] = keys.get("nofix") is None if keys.get('time') is not None: keys['time'] = int(keys.get('time'))