diff --git a/troi/tools/spotify_lookup.py b/troi/tools/spotify_lookup.py index 36d7dd3..6e0cbe0 100644 --- a/troi/tools/spotify_lookup.py +++ b/troi/tools/spotify_lookup.py @@ -16,7 +16,7 @@ def lookup_spotify_ids(recordings): and add those to the recordings. """ response = requests.post( SPOTIFY_IDS_LOOKUP_URL, - json=[{"[recording_mbid]": recording.mbid} for recording in recordings] + json=[{"recording_mbid": recording.mbid} for recording in recordings] ) response.raise_for_status() spotify_data = response.json()