From 3c7940c6c6a9837f881098eadcff32c7fcd3c835 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 18 Nov 2024 15:12:20 -0500 Subject: [PATCH] [lastfm] Fix importing tracks --- vrobbler/apps/music/lastfm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vrobbler/apps/music/lastfm.py b/vrobbler/apps/music/lastfm.py index 99df602..3b974be 100644 --- a/vrobbler/apps/music/lastfm.py +++ b/vrobbler/apps/music/lastfm.py @@ -52,9 +52,10 @@ class LastFM: track = get_or_create_track( lfm_scrobble, { - "TRACK_TITLE": "track", + "TRACK_TITLE": "title", "ARTIST_NAME": "artist", "ALBUM_NAME": "album", + "RUN_TIME": "run_time_seconds", }, )