aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2016-01-22 13:20:00 +0000
committerMatthew Wild <mwild1@gmail.com>2016-01-22 13:20:00 +0000
commit19b9ea3838a29c06f1bbb6ddec5645187e675dac (patch)
treea95e688d74d29dc16986f523ef2ef7ed4aef491f
parentea765c23848bb89db85b3240b8d3a94203160e18 (diff)
downloadprosody-19b9ea3838a29c06f1bbb6ddec5645187e675dac.tar.gz
prosody-19b9ea3838a29c06f1bbb6ddec5645187e675dac.zip
mod_admin_telnet: Fix sorting of JIDs in c2s:show() family of functions (thanks lookshe and Zash)
-rw-r--r--plugins/mod_admin_telnet.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua
index 73698ada..9dfbbc7a 100644
--- a/plugins/mod_admin_telnet.lua
+++ b/plugins/mod_admin_telnet.lua
@@ -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);