diff options
author | Kim Alvefur <zash@zash.se> | 2016-01-03 17:48:36 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-01-03 17:48:36 +0100 |
commit | d0bf02ff6639f9cd0cea23848e74361bad19640d (patch) | |
tree | 9dfa56c25db8165bafe504a63d63283506ea2a2f | |
parent | 8cdb2d4f94348e89a2fda84f3ba877cd3d88d987 (diff) | |
download | prosody-d0bf02ff6639f9cd0cea23848e74361bad19640d.tar.gz prosody-d0bf02ff6639f9cd0cea23848e74361bad19640d.zip |
mod_admin_adhoc: Show only connections to/from the host the command was run on
-rw-r--r-- | plugins/mod_admin_adhoc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_admin_adhoc.lua b/plugins/mod_admin_adhoc.lua index 8349a383..392e715e 100644 --- a/plugins/mod_admin_adhoc.lua +++ b/plugins/mod_admin_adhoc.lua @@ -422,7 +422,7 @@ local function list_s2s_this_handler(self, data, state) local sess_lines = { r = remotehost, session_flags(session, { "", direction, remotehost or "?" })}; - if remotehost:match(module_host) or localhost:match(module_host) then + if localhost == module_host then s2s_list[#s2s_list+1] = sess_lines; end end |