aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2019-06-25 14:32:25 +0200
committerGravatar Christian Hesse <mail@eworm.de>2019-06-25 14:32:25 +0200
commit2f22e06b9b944d5df903f0943d1ea7a87a24493e (patch)
tree826bb1b4bfd21357cebff8f45036d6eafeb9c917
parente9cdf947855880c0b7299ed7e2dd1770f71c5cfb (diff)
gps-track: fix the condition for workaround
A null byte is always matched in regexp...
-rw-r--r--gps-track4
1 files changed, 2 insertions, 2 deletions
diff --git a/gps-track b/gps-track
index 03c551c..7a78482 100644
--- a/gps-track
+++ b/gps-track
@@ -12,10 +12,10 @@
if ($Gps->"valid" = true) do={
# TODO: remove workaround when trailing zero bytes are gone
- :if (($Gps->"latitude") ~ "\00") do={
+ :if ([ :find ($Gps->"latitude") "\00" ] > 0) do={
:set ($Gps->"latitude") [ :pick ($Gps->"latitude") 0 [ :find ($Gps->"latitude") "\00" ] ];
}
- :if (($Gps->"longitude") ~ "\00") do={
+ :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 \