mod_admin_telnet: Include both c2s connections and sessions in c2s:show()

This way both incomplete connections and hibernating c2s sessions are shown.
This commit is contained in:
Kim Alvefur 2019-07-26 20:25:15 +02:00
parent d9649edc2c
commit 3effd36ff0

View file

@ -593,8 +593,10 @@ local function get_jid(session)
end
local function show_c2s(callback)
local c2s = array.collect(values(module:shared"/*/c2s/sessions"));
local c2s = array.collect(values(prosody.full_sessions));
c2s:append(array.collect(values(module:shared"/*/c2s/sessions")));
c2s:append(array.collect(values(module:shared"/*/bosh/sessions")));
c2s:unique();
c2s:sort(function(a, b)
if a.host == b.host then
if a.username == b.username then