[scrobbles] Revert previous change, silly

This commit is contained in:
2024-03-08 14:33:31 -05:00
parent 01270a9e32
commit efcf01b49f

View File

@ -829,9 +829,6 @@ class Scrobble(TimeStampedModel):
) )
source = scrobble_data["source"] source = scrobble_data["source"]
mtype = media.__class__.__name__ mtype = media.__class__.__name__
playback_status = scrobble_data.get(
"mopidy_status", scrobble_data.get("jellyfin_status", None)
)
logger.info( logger.info(
f"[scrobbling] check for existing scrobble to update ", f"[scrobbling] check for existing scrobble to update ",
@ -856,11 +853,7 @@ class Scrobble(TimeStampedModel):
) )
return scrobble return scrobble
if ( if scrobble and scrobble.can_be_updated:
scrobble
and scrobble.can_be_updated
and playback_status != "stopped"
):
return scrobble.update(scrobble_data) return scrobble.update(scrobble_data)
# Discard status before creating # Discard status before creating
@ -869,7 +862,7 @@ class Scrobble(TimeStampedModel):
logger.info( logger.info(
f"[scrobbling] existing scrobble finished, creating new scrobble", f"[scrobbling] existing scrobble finished, creating new scrobble",
extra={ extra={
"finished_scrobble_id": scrobble.id if scrobble else None, "scrobble_id": scrobble.id if scrobble else None,
"media_type": mtype, "media_type": mtype,
"media_id": media.id, "media_id": media.id,
"source": source, "source": source,