Fix really irritating double scrobble bug

This commit is contained in:
2023-01-16 19:34:40 -05:00
parent 58be8d26a0
commit 07cfb03eb6

View File

@ -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)