gps-track: remove workaround

This commit is contained in:
Christian Hesse 2019-07-09 11:19:41 +02:00
parent 65c76b8409
commit 13f091e5ae

View file

@ -11,13 +11,6 @@
:local Gps [ / system gps monitor once as-value ];
if ($Gps->"valid" = true) do={
# TODO: remove workaround when trailing zero bytes are gone
:if ([ :find ($Gps->"latitude") "\00" ] > 0) do={
:set ($Gps->"latitude") [ :pick ($Gps->"latitude") 0 [ :find ($Gps->"latitude") "\00" ] ];
}
:if ([ :find ($Gps->"longitude") "\00" ] > 0) do={
:set ($Gps->"longitude") [ :pick ($Gps->"longitude") 0 [ :find ($Gps->"longitude") "\00" ] ];
}
:tool fetch check-certificate=yes-without-crl \
$GpsTrackUrl keep-result=no \
http-method=post http-header-field="Content-Type: application/json" \