aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_blocklist.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-01 22:18:44 +0200
committerKim Alvefur <zash@zash.se>2017-04-01 22:18:44 +0200
commit38ea54b37b731de1aadf0fd0a25ea060956ce878 (patch)
treefa12bec73ff77891715910149a993b781ff57204 /plugins/mod_blocklist.lua
parent67572368f294b4a1f018ab78d42bdf7cf12e7d8c (diff)
downloadprosody-38ea54b37b731de1aadf0fd0a25ea060956ce878.tar.gz
prosody-38ea54b37b731de1aadf0fd0a25ea060956ce878.zip
mod_blocklist: Use local variable [luacheck]
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 6a555a06..ae24a2fc 100644
--- a/plugins/mod_blocklist.lua
+++ b/plugins/mod_blocklist.lua
@@ -229,7 +229,7 @@ end);
-- Buggy clients
module:hook("iq-error/self/blocklist-push", function (event)
local origin, stanza = event.origin, event.stanza;
- local _, condition, text = event.stanza:get_error();
+ local _, condition, text = stanza:get_error();
local log = (origin.log or module._log);
log("warn", "Client returned an error in response to notification from mod_%s: %s%s%s",
module.name, condition, text and ": " or "", text or "");