mod_pubsub: Correct traceback in loop invocation (data is the iterator, does not return one)
authorKim Alvefur <zash@zash.se>
Sun, 08 Oct 2017 00:35:09 +0200
changeset 8298 8e82aa858ed2
parent 8297 90576b60f2d0
child 8299 e23328adca25
mod_pubsub: Correct traceback in loop invocation (data is the iterator, does not return one)
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);