From c20204a6eaa94cf59d0dde64918eb68e97cb5f55 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 28 Jul 2025 09:14:25 -0400 Subject: [PATCH] [music] Turns out lastfm already has our timeszone --- vrobbler/apps/scrobbles/importers/lastfm.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/vrobbler/apps/scrobbles/importers/lastfm.py b/vrobbler/apps/scrobbles/importers/lastfm.py index 05d1c6d..6e01020 100644 --- a/vrobbler/apps/scrobbles/importers/lastfm.py +++ b/vrobbler/apps/scrobbles/importers/lastfm.py @@ -50,9 +50,7 @@ class LastFM: enrich=True, ) - timestamp = self.vrobbler_user.profile.get_timestamp_with_tz( - lfm_scrobble.get("timestamp") - ) + timestamp = lfm_scrobble.get("timestamp") stop_timestamp = timestamp + timedelta( seconds=track.run_time_seconds )