diff options
author | Christian Hesse <mail@eworm.de> | 2019-05-09 22:07:09 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2019-05-09 22:07:09 +0200 |
commit | 6b603b1e0ede8fe8d9fef80099b9d1c26c9d2ff0 (patch) | |
tree | 13ff813d698fb3a59bc1143b41e9cf17c93a3f53 /gps-track | |
parent | a1bad3c0aaff664c243ef2596cdbcdc59cc306d5 (diff) |
gps-track: make workaround conditional
This is fixed in 6.45rc42.
Diffstat (limited to 'gps-track')
-rw-r--r-- | gps-track | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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" \ |