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
commit158ea2ce458caa15881087bcab6809ef91cb54c9 (patch)
tree09d96eb3fc81a230e14bf45aa1c1067ef126471e /plugins/mod_pubsub/pubsub.lib.lua
parent2967393ae804d87f2cd97c97bf8cf58b501f4e67 (diff)
downloadprosody-158ea2ce458caa15881087bcab6809ef91cb54c9.tar.gz
prosody-158ea2ce458caa15881087bcab6809ef91cb54c9.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