mod_admin_shell: Fix attempt to compare number with string

Missed the # in 93c1590b5951
This commit is contained in:
Kim Alvefur 2023-04-07 13:04:15 +02:00
parent 08c0557093
commit 65dffa88a8

View file

@ -869,7 +869,7 @@ available_columns = {
title = "Security";
description = "TLS version or security status";
key = "conn";
width = math.max(#"secure", "TLSvX.Y");
width = math.max(#"secure", #"TLSvX.Y");
mapper = function(conn, session)
if not session.secure then return "insecure"; end
if not conn or not conn:ssl() then return "secure" end