mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_privacy: Fix to correctly sort privacy list rules by order (thanks Flow)
This commit is contained in:
parent
933bb5a869
commit
27c737e5ff
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ function createOrReplaceList (privacy_lists, origin, stanza, name, entries)
|
|||
list.items[#list.items + 1] = tmp;
|
||||
end
|
||||
|
||||
table.sort(list, function(a, b) return a.order < b.order; end);
|
||||
table.sort(list.items, function(a, b) return a.order < b.order; end);
|
||||
|
||||
origin.send(st.reply(stanza));
|
||||
if bare_sessions[bare_jid] ~= nil then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue