aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2019-05-09 22:07:09 +0200
committerGravatar Christian Hesse <mail@eworm.de>2019-05-09 22:07:09 +0200
commit6b603b1e0ede8fe8d9fef80099b9d1c26c9d2ff0 (patch)
tree13ff813d698fb3a59bc1143b41e9cf17c93a3f53
parenta1bad3c0aaff664c243ef2596cdbcdc59cc306d5 (diff)
gps-track: make workaround conditional
This is fixed in 6.45rc42.
-rw-r--r--gps-track9
1 files changed, 7 insertions, 2 deletions
diff --git a/gps-track b/gps-track
index 572d662..03c551c 100644
--- a/gps-track
+++ b/gps-track
@@ -11,8 +11,13 @@
:local Gps [ / system gps monitor once as-value ];
if ($Gps->"valid" = true) do={
- :set ($Gps->"latitude") [ :pick ($Gps->"latitude") 0 [ :find ($Gps->"latitude") "\00" ] ];
- :set ($Gps->"longitude") [ :pick ($Gps->"longitude") 0 [ :find ($Gps->"longitude") "\00" ] ];
+ # TODO: remove workaround when trailing zero bytes are gone
+ :if (($Gps->"latitude") ~ "\00") do={
+ :set ($Gps->"latitude") [ :pick ($Gps->"latitude") 0 [ :find ($Gps->"latitude") "\00" ] ];
+ }
+ :if (($Gps->"longitude") ~ "\00") 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" \