mod_blocklist: Capitalize log message
authorKim Alvefur <zash@zash.se>
Sun, 05 Oct 2014 15:36:19 +0200
changeset 6463 6d3187f24608
parent 6462 ba421af3dfd3
child 6467 737c81bd898e
mod_blocklist: Capitalize log message
plugins/mod_blocklist.lua
--- a/plugins/mod_blocklist.lua	Fri Oct 03 14:42:18 2014 +0200
+++ b/plugins/mod_blocklist.lua	Sun Oct 05 15:36:19 2014 +0200
@@ -182,7 +182,7 @@
 -- Buggy clients
 module:hook("iq-error/self/blocklist-push", function (event)
 	local type, condition, text = event.stanza:get_error();
-	(event.origin.log or module._log)("warn", "client returned an error in response to notification from mod_%s: %s%s%s", module.name, condition, text and ": " or "", text or "");
+	(event.origin.log or module._log)("warn", "Client returned an error in response to notification from mod_%s: %s%s%s", module.name, condition, text and ": " or "", text or "");
 	return true;
 end);