From 30b43d3c73af77931fc31f3ac067e5346811e06c Mon Sep 17 00:00:00 2001 From: mugman Date: Mon, 20 Oct 2025 11:22:54 -0400 Subject: [PATCH] don't submit duration as track number --- scrobbler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrobbler.py b/scrobbler.py index db5635a..5cf2ca7 100644 --- a/scrobbler.py +++ b/scrobbler.py @@ -66,4 +66,4 @@ while True: if (runtime >= duration/2 or runtime > 4*60) and tracked_id != id: print("scrobbling") tracked_id = id - lfm.scrobble(artist, song, int(time.time() - runtime), album, album_artist, duration) + lfm.scrobble(artist=artist, title=song, timestamp=int(time.time() - runtime), album=album, album_artist=album_artist, duration=duration)