aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_blocklist.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-10-05 15:36:19 +0200
committerKim Alvefur <zash@zash.se>2014-10-05 15:36:19 +0200
commitedbbf7e07efd86e599340dbeccf2dba6b743c332 (patch)
tree7426e6796f8ca48b9318b587d09b8648b42ed789 /plugins/mod_blocklist.lua
parentedc34e6635f65e78e247bece543d91e474c25361 (diff)
downloadprosody-edbbf7e07efd86e599340dbeccf2dba6b743c332.tar.gz
prosody-edbbf7e07efd86e599340dbeccf2dba6b743c332.zip
mod_blocklist: Capitalize log message
Diffstat (limited to 'plugins/mod_blocklist.lua')
-rw-r--r--plugins/mod_blocklist.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_blocklist.lua b/plugins/mod_blocklist.lua
index dca729f0..1f09ca13 100644
--- a/plugins/mod_blocklist.lua
+++ b/plugins/mod_blocklist.lua
@@ -182,7 +182,7 @@ end);
-- 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);