mod_admin_telnet: Fix sorting of JIDs in c2s:show() family of functions (thanks lookshe and Zash)

This commit is contained in:
Matthew Wild 2016-01-22 13:20:00 +00:00
parent bd64d50dd4
commit f9bec76a46

View file

@ -557,11 +557,11 @@ local function show_c2s(callback)
c2s:sort(function(a, b)
if a.host == b.host then
if a.username == b.username then
return a.resource or "" > b.resource or "";
return (a.resource or "") > (b.resource or "");
end
return a.username or "" > b.username or "";
return (a.username or "") > (b.username or "");
end
return a.host or "" > b.host or "";
return (a.host or "") > (b.host or "");
end):map(function (session)
callback(get_jid(session), session)
end);