From 9961d8996e08ce91dc52547f91d8b33592d145fe Mon Sep 17 00:00:00 2001 From: Matteo Biscosi Date: Fri, 29 Nov 2024 11:38:20 +0100 Subject: [PATCH] Fixes missing http prefix (#8676 #8844) --- scripts/lua/host_details.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lua/host_details.lua b/scripts/lua/host_details.lua index 9a9ce84eb1a7..81dd58f51883 100644 --- a/scripts/lua/host_details.lua +++ b/scripts/lua/host_details.lua @@ -147,12 +147,12 @@ local function printPort(port, proto, is_server_port) print('
  • ' .. port .. " (" .. proto .. ")" .. "
  • \n") else - print('
  • ' .. port .. + print('
  • ' .. port .. " (" .. proto .. ")" .. "
  • \n") end else print( - '
  • ' .. port .. " (" .. + '
  • ' .. port .. " (" .. proto .. ")" .. "
  • \n") end end