# HG changeset patch # User Kim Alvefur # Date 1507415709 -7200 # Node ID 8e82aa858ed204259519c2f9420bd094cea470ed # Parent 90576b60f2d041f14a75f595a102ca8a36d4a938 mod_pubsub: Correct traceback in loop invocation (data is the iterator, does not return one) diff -r 90576b60f2d0 -r 8e82aa858ed2 plugins/mod_pubsub/pubsub.lib.lua --- a/plugins/mod_pubsub/pubsub.lib.lua Thu Oct 05 18:06:04 2017 +0200 +++ b/plugins/mod_pubsub/pubsub.lib.lua Sun Oct 08 00:35:09 2017 +0200 @@ -358,7 +358,7 @@ 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);