From 07cfb03eb6156687c008a61fb58118a1385eb9a1 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 16 Jan 2023 19:34:40 -0500 Subject: [PATCH] Fix really irritating double scrobble bug --- vrobbler/apps/scrobbles/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/vrobbler/apps/scrobbles/models.py b/vrobbler/apps/scrobbles/models.py index ba29e08..6ac1e54 100644 --- a/vrobbler/apps/scrobbles/models.py +++ b/vrobbler/apps/scrobbles/models.py @@ -246,8 +246,6 @@ class Scrobble(TimeStampedModel): scrobble_status = scrobble_data.pop('mopidy_status', None) if not scrobble_status: scrobble_status = scrobble_data.pop('jellyfin_status', None) - if not scrobble_status: - scrobble_status = 'resumed' logger.debug(f"Scrobbling to {scrobble} with status {scrobble_status}") scrobble.update_ticks(scrobble_data)