From 2285c5bfd60113e349e15ca7b7b54ba285b2f15b Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 22 Jan 2023 18:34:02 -0500 Subject: [PATCH] Fix bug in jellyfin scrobbler --- vrobbler/apps/scrobbles/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/models.py b/vrobbler/apps/scrobbles/models.py index dc855f2..3664134 100644 --- a/vrobbler/apps/scrobbles/models.py +++ b/vrobbler/apps/scrobbles/models.py @@ -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},