mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
b0864f247d
1 changed files with 3 additions and 3 deletions
|
@ -594,11 +594,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue