From 22c07bdb8299cf29b1fb92436642bc35ad46e864 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 5 Nov 2024 16:33:28 -0500 Subject: [PATCH] [music] Fix lastfm importing --- vrobbler/apps/music/lastfm.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vrobbler/apps/music/lastfm.py b/vrobbler/apps/music/lastfm.py index 0f8f8f0..68e8dde 100644 --- a/vrobbler/apps/music/lastfm.py +++ b/vrobbler/apps/music/lastfm.py @@ -55,7 +55,6 @@ class LastFM: "TRACK_TITLE": "track", "ARTIST_NAME": "artist", "ALBUM_NAME": "album", - "TIMESTAMP": "timestamp", }, ) @@ -65,7 +64,7 @@ class LastFM: new_scrobble = Scrobble( user=self.vrobbler_user, - timestamp=timestamp, + timestamp=lfm_scrobble.get("timestamp"), source=source, track=track, timezone=timezone,