mod_slack_webhooks/mod_slack_webhooks.lua
changeset 3099 3a6a48b83b4f
parent 3098 39d714abbc2b
child 3100 420391fd56e5
--- a/mod_slack_webhooks/mod_slack_webhooks.lua	Sat Jun 02 14:59:09 2018 +0200
+++ b/mod_slack_webhooks/mod_slack_webhooks.lua	Sat Jun 02 15:00:27 2018 +0200
@@ -93,7 +93,6 @@
 	local headers = request.headers;
 
 	local body_type = headers.content_type;
-	local message;
 	local post_body;
 	if body_type == "application/x-www-form-urlencoded" then
 		post_body = formdecode(request.body)["payload"];
@@ -113,7 +112,7 @@
 	local sender = jid.join(path, module.host, from_nick);
 	module:log("debug", "message to %s from %s", bare_room, sender);
 	module:log("debug", "body: %s", post_body["text"]);
-	message = msg({ to = bare_room, from = sender, type = "groupchat", id="webhookbot" .. now()},post_body["text"]);
+	local message = msg({ to = bare_room, from = sender, type = "groupchat", id="webhookbot" .. now()},post_body["text"]);
 	dest_room:broadcast_message(message, true);
 	return 201;
 end