Browse Source

[locations] Flip the logic on whether we've moved

Colin Powell 1 year ago
parent
commit
27523bc7ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vrobbler/apps/scrobbles/models.py

+ 1 - 1
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