Remove local.mesh suffix from Local Hosts hostname in newui (#108)

This commit is contained in:
Steve AB7PA 2021-05-20 18:46:29 -07:00 committed by GitHub
parent 7633d10382
commit 1c76248765
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 6 deletions

View File

@ -144,9 +144,9 @@ function model.getArednAlert()
afile:close() afile:close()
end end
end end
if #alert~=0 then return alert if #alert~=0 then return alert
else return "" else return ""
end end
end end
------------------------------------- -------------------------------------
@ -162,9 +162,9 @@ function model.getLocalAlert()
afile:close() afile:close()
end end
end end
if #alert~=0 then return alert if #alert~=0 then return alert
else return "" else return ""
end end
end end
@ -525,6 +525,7 @@ function model.getLocalHosts()
} }
local index = 0 local index = 0
for hostname in entries:gmatch("%S+") do for hostname in entries:gmatch("%S+") do
hostname = string.gsub(hostname,".local.mesh$","")
entry["hostnames"][index] = hostname entry["hostnames"][index] = hostname
index = index + 1 index = index + 1
end end