From 8a83c9fdb373fa4e611c82c379e08ab29ddd95e8 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 12 Mar 2024 12:51:18 -0400 Subject: [PATCH] [scrobbling] Don't run locations though can_be_updated --- vrobbler/apps/scrobbles/models.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vrobbler/apps/scrobbles/models.py b/vrobbler/apps/scrobbles/models.py index 7376cac..02cd3a5 100644 --- a/vrobbler/apps/scrobbles/models.py +++ b/vrobbler/apps/scrobbles/models.py @@ -907,10 +907,6 @@ class Scrobble(TimeStampedModel): "media_type": cls.MediaType.GEO_LOCATION, "media_id": location.id, "scrobble_data": scrobble_data, - "percent_played": scrobble.percent_played if scrobble else 0, - "can_be_updated": scrobble.can_be_updated - if scrobble - else False, }, )