mirror of
https://github.com/markqvist/Sideband.git
synced 2025-07-22 06:29:14 -04:00
Fixed marker init
This commit is contained in:
parent
f5d1dc6e05
commit
a0a6745b35
2 changed files with 2 additions and 2 deletions
|
@ -3303,7 +3303,7 @@ class SidebandApp(MDApp):
|
|||
t = Telemeter.from_packed(telemetry_data)
|
||||
if t != None:
|
||||
telemetry = t.read_all()
|
||||
if "location" in telemetry and telemetry["location"]["latitude"] != None and telemetry["location"]["longtitude"] != None:
|
||||
if "location" in telemetry and telemetry["location"] != None and telemetry["location"]["latitude"] != None and telemetry["location"]["longtitude"] != None:
|
||||
latest_viewable = telemetry
|
||||
break
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue