From f4d00b4a22e6b5bcfa9673ac4b3fcc1c9ec30c79 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 18 Feb 2024 01:46:32 -0500 Subject: [PATCH] [locations] Fix typo in settings --- vrobbler/apps/locations/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/locations/models.py b/vrobbler/apps/locations/models.py index 884ade8..1ff7a2d 100644 --- a/vrobbler/apps/locations/models.py +++ b/vrobbler/apps/locations/models.py @@ -15,7 +15,7 @@ BNULL = {"blank": True, "null": True} User = get_user_model() GEOLOC_ACCURACY = int(getattr(settings, "GEOLOC_ACCURACY", 4)) -GEOLOC_PROXIMITY = Decimal(getattr(settings, "GEOLOC_ACCURACY", "0.0001")) +GEOLOC_PROXIMITY = Decimal(getattr(settings, "GEOLOC_PROXIMITY", "0.00001")) class GeoLocation(ScrobblableMixin):