Fix alerts from VS

This commit is contained in:
Alfredo Cardigliano 2023-10-30 11:11:42 +01:00
parent 25043a771b
commit b7fa7967ba
2 changed files with 15 additions and 5 deletions

View file

@ -251,7 +251,9 @@ local function key2amhost(host)
local measurement, amhost = string.match(host, "^([^@]+)@(.+)")
if measurement and amhost then
return amhost, measurement
return amhost, measurement
else
return nil, nil
end
end