aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-10-23 16:22:12 +0200
committerKim Alvefur <zash@zash.se>2022-10-23 16:22:12 +0200
commit20532df52592717027b1cb138da71abc8913ffbf (patch)
tree17c7b710386271fbc0476473e0f17a6f741de185
parentmod_admin_shell: Ensure connection exists to get port from (fixes #1777) (diff)
downloadprosody-20532df52592717027b1cb138da71abc8913ffbf.tar.xz
prosody-20532df52592717027b1cb138da71abc8913ffbf.zip
mod_admin_shell: Ensure available connection for column 'secure'
Similar to #1777
-rw-r--r--plugins/mod_admin_shell.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua
index bd84658d3..dda35f08c 100644
--- a/plugins/mod_admin_shell.lua
+++ b/plugins/mod_admin_shell.lua
@@ -816,7 +816,7 @@ available_columns = {
width = 30;
key = "conn";
mapper = function(conn)
- local sock = conn:socket();
+ local sock = conn and conn:socket();
local info = sock and sock.info and sock:info();
if info then return info.cipher end
end;