mod_pubsub_github/mod_pubsub_github.lua
changeset 3514 f09423c29f31
parent 3513 94414cadfcaa
child 3517 9556e92b2ec4
--- a/mod_pubsub_github/mod_pubsub_github.lua	Sun Mar 31 16:07:11 2019 +0200
+++ b/mod_pubsub_github/mod_pubsub_github.lua	Sun Mar 31 16:11:37 2019 +0200
@@ -26,6 +26,8 @@
 		return "Invalid JSON. From you of all people...";
 	end
 
+	module:log("debug", "Handling POST: \n%s\n", tostring(request.body));
+
 	for _, commit in ipairs(data.commits) do
 		local ok, err = pubsub_service:publish(node, true, data.repository.name,
 			st.stanza("item", { id = data.repository.name, xmlns = "http://jabber.org/protocol/pubsub" })
@@ -44,7 +46,6 @@
 		end
 	end
 
-	module:log("debug", "Handled POST: \n%s\n", tostring(request.body));
 	response.status_code = 202;
 	return "Thank you Github!";
 end