Fix local variable in local neighbors

This commit is contained in:
Chris 2022-02-10 22:42:32 -08:00 committed by Joe AE6XE
parent 73d27f4d13
commit 2ce0e15083
1 changed files with 1 additions and 1 deletions

View File

@ -747,7 +747,7 @@ do
row = row .. val .. " minutes ago" row = row .. val .. " minutes ago"
end end
else else
val = string.format("%.1f", age / 3600) local val = string.format("%.1f", age / 3600)
if val == "1.0" then if val == "1.0" then
row = row .. "1 hour ago" row = row .. "1 hour ago"
else else