aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2014-08-28 09:17:07 +0100
committerMatthew Wild <mwild1@gmail.com>2014-08-28 09:17:07 +0100
commit1822bfc7e51962f76417d74182e7de5ddac10b19 (patch)
treec73f0e505eca72b6543576c26357fe178e0691e1 /plugins
parentd2e9a31bf546b782d249cd9346b8ae6c41b1c966 (diff)
downloadprosody-1822bfc7e51962f76417d74182e7de5ddac10b19.tar.gz
prosody-1822bfc7e51962f76417d74182e7de5ddac10b19.zip
mod_privacy: Fix to correctly sort privacy list rules by order (thanks Flow)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_privacy.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_privacy.lua b/plugins/mod_privacy.lua
index 31ace9f9..49c9427f 100644
--- a/plugins/mod_privacy.lua
+++ b/plugins/mod_privacy.lua
@@ -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