kopia lustrzana https://github.com/glidernet/ogn-python
Fix: get country code only if we have a valid position
rodzic
70ce7eebff
commit
829f52f658
|
@ -100,8 +100,9 @@ def update_receivers():
|
||||||
|
|
||||||
for receiver in unknown_country_query.all():
|
for receiver in unknown_country_query.all():
|
||||||
location = receiver.location
|
location = receiver.location
|
||||||
receiver.country_code = get_country_code(location.latitude, location.longitude)
|
if location is not None:
|
||||||
if receiver.country_code is not None:
|
receiver.country_code = get_country_code(location.latitude, location.longitude)
|
||||||
logger.info("Updated country_code for {} to {}".format(receiver.name, receiver.country_code))
|
if receiver.country_code is not None:
|
||||||
|
logger.info("Updated country_code for {} to {}".format(receiver.name, receiver.country_code))
|
||||||
|
|
||||||
app.session.commit()
|
app.session.commit()
|
||||||
|
|
Ładowanie…
Reference in New Issue