alfred.py: ignore non-parseable locations
This commit is contained in:
parent
d6bd31f8d0
commit
fbc5c636df
|
@ -13,7 +13,10 @@ class alfred:
|
|||
for mac,node in alfred_data.items():
|
||||
node_alias = {}
|
||||
if 'location' in node:
|
||||
try:
|
||||
node_alias['gps'] = str(node['location']['latitude']) + ' ' + str(node['location']['longitude'])
|
||||
except:
|
||||
pass
|
||||
|
||||
try:
|
||||
node_alias['firmware'] = node['software']['firmware']['release']
|
||||
|
|
Loading…
Reference in a new issue