From 27523bc7ff99e547b1ef2d68ab804546c63bfe83 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sat, 10 Feb 2024 14:30:41 -0500 Subject: [PATCH] [locations] Flip the logic on whether we've moved --- 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 f492ea3..7e754d0 100644 --- a/vrobbler/apps/scrobbles/models.py +++ b/vrobbler/apps/scrobbles/models.py @@ -697,7 +697,7 @@ class Scrobble(TimeStampedModel): logger.info(f"No - stale - {self.id} - {self.source}") updatable = False if self.media_obj.__class__.__name__ in ["GeoLocation"]: - updatable = not self.has_moved + updatable = self.has_moved return updatable @property