diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-08 00:35:09 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-08 00:35:09 +0200 |
commit | cc8c5d2ffe70cf3825121173fcc8ed15a6cbcea6 (patch) | |
tree | f11cb7ad1979f78cd05fd8fe34f753703615b8d7 /plugins/mod_pubsub | |
parent | 4730aead9e3dcc0096ffb73f9b31f87b0069ad8c (diff) | |
download | prosody-cc8c5d2ffe70cf3825121173fcc8ed15a6cbcea6.tar.gz prosody-cc8c5d2ffe70cf3825121173fcc8ed15a6cbcea6.zip |
mod_pubsub: Correct traceback in loop invocation (data is the iterator, does not return one)
Diffstat (limited to 'plugins/mod_pubsub')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index 25a534b6..57055462 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -358,7 +358,7 @@ local function simple_itemstore(archive, config, user, node, expose_publisher) end -- Workaround for buggy SQL drivers which require iterating until we get a nil. local id, payload, when, publisher; - for a, b, c, d in data() do + for a, b, c, d in data do id, payload, when, publisher = a, b, c, d; end module:log("debug", "Get item %s (published at %s by %s) from store %s", id, when, publisher, store); |