diff --git a/vrobbler/apps/scrobbles/models.py b/vrobbler/apps/scrobbles/models.py index 3664134..2773ed8 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_percent <= 100: + if scrobble and scrobble.percent_played <= 100: logger.info( f"Found existing scrobble for video {video}, updating", {"scrobble_data": scrobble_data},