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

This commit is contained in:
2024-02-10 14:30:41 -05:00
parent 67ef1a15ec
commit 27523bc7ff

View File

@ -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