mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
gps-track: fix the condition for workaround
A null byte is always matched in regexp...
This commit is contained in:
parent
e9cdf94785
commit
2f22e06b9b
1 changed files with 2 additions and 2 deletions
|
@ -12,10 +12,10 @@
|
||||||
|
|
||||||
if ($Gps->"valid" = true) do={
|
if ($Gps->"valid" = true) do={
|
||||||
# TODO: remove workaround when trailing zero bytes are gone
|
# 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" ] ];
|
: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" ] ];
|
:set ($Gps->"longitude") [ :pick ($Gps->"longitude") 0 [ :find ($Gps->"longitude") "\00" ] ];
|
||||||
}
|
}
|
||||||
:tool fetch check-certificate=yes-without-crl \
|
:tool fetch check-certificate=yes-without-crl \
|
||||||
|
|
Loading…
Reference in a new issue