Colin Powell 6 месяцев назад
Родитель
Сommit
22c07bdb82
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      vrobbler/apps/music/lastfm.py

+ 1 - 2
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,