mod_admin_shell: Ensure connection exists to get port from (fixes #1777)

This commit is contained in:
Kim Alvefur 2022-10-23 16:19:39 +02:00
parent bab0635179
commit c51152432a

View file

@ -745,7 +745,11 @@ available_columns = {
width = 5; width = 5;
align = "right"; align = "right";
key = "conn"; key = "conn";
mapper = function(conn) return conn:serverport(); end; mapper = function(conn)
if conn then
return conn:serverport();
end
end;
}; };
dir = { dir = {
title = "Dir"; title = "Dir";