diff --git a/bumblebee_status/util/location.py b/bumblebee_status/util/location.py index f8cb441..12242ea 100644 --- a/bumblebee_status/util/location.py +++ b/bumblebee_status/util/location.py @@ -16,15 +16,6 @@ __document = None __data = {} __next = 0 __sources = [ - { - "url": "http://free.ipwhois.io/json/", - "mapping": { - "latitude": "latitude", - "longitude": "longitude", - "country": "country", - "ip": "public_ip", - }, - }, { "url": "http://ipapi.co/json", "mapping": { @@ -34,6 +25,15 @@ __sources = [ "ip": "public_ip", }, }, + { + "url": "http://free.ipwhois.io/json/", + "mapping": { + "latitude": "latitude", + "longitude": "longitude", + "country": "country", + "ip": "public_ip", + }, + } ]