aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pubsub/pubsub.lib.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-09-27 19:53:39 +0200
committerKim Alvefur <zash@zash.se>2014-09-27 19:53:39 +0200
commit07abf96a6a3b5be33d9c95f8cffdce5ffb4fe362 (patch)
tree09d96eb3fc81a230e14bf45aa1c1067ef126471e /plugins/mod_pubsub/pubsub.lib.lua
parentf8776db280ceaacf9bf1f314e0b2e292090db297 (diff)
downloadprosody-07abf96a6a3b5be33d9c95f8cffdce5ffb4fe362.tar.gz
prosody-07abf96a6a3b5be33d9c95f8cffdce5ffb4fe362.zip
mod_pubsub: Transplant pieces of cdcfd93e2f43 from trunk
Diffstat (limited to 'plugins/mod_pubsub/pubsub.lib.lua')
-rw-r--r--plugins/mod_pubsub/pubsub.lib.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua
index 2b015e34..4e9acd68 100644
--- a/plugins/mod_pubsub/pubsub.lib.lua
+++ b/plugins/mod_pubsub/pubsub.lib.lua
@@ -42,8 +42,8 @@ function handlers.get_items(origin, stanza, items, service)
end
local data = st.stanza("items", { node = node });
- for _, entry in pairs(results) do
- data:add_child(entry);
+ for _, id in ipairs(results) do
+ data:add_child(results[id]);
end
local reply;
if data then