Fix bug in jellyfin scrobbler

This commit is contained in:
2023-01-22 18:34:02 -05:00
parent 132d63bb5d
commit 2285c5bfd6

View File

@ -105,7 +105,7 @@ class Scrobble(TimeStampedModel):
.order_by('-modified')
.first()
)
if scrobble and scrobble.playback_perecnt <= 100:
if scrobble and scrobble.playback_percent <= 100:
logger.info(
f"Found existing scrobble for video {video}, updating",
{"scrobble_data": scrobble_data},