Sfoglia il codice sorgente

[locations] Geo accuracy should be int

Colin Powell 1 anno fa
parent
commit
879942d070
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      vrobbler/apps/locations/models.py

+ 1 - 1
vrobbler/apps/locations/models.py

@@ -13,7 +13,7 @@ logger = logging.getLogger(__name__)
 BNULL = {"blank": True, "null": True}
 User = get_user_model()
 
-GEOLOC_ACCURACY = getattr(settings, "GEOLOC_ACCURACY", 4)
+GEOLOC_ACCURACY = int(getattr(settings, "GEOLOC_ACCURACY", 4))
 
 
 class GeoLocation(ScrobblableMixin):