diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-01 22:38:02 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-01 22:38:02 +0200 |
commit | c27589b44c5312d9119d0152ed4dcf1b5492414c (patch) | |
tree | 54caf551ee6f37067537da4cfe6cdd84050f92a0 /plugins/mod_blocklist.lua | |
parent | 2364604bc18ed52d599160a169a465d85a20a0c6 (diff) | |
parent | 3e4952567c828aa7a475fa9bcc48f794d92fdf2c (diff) | |
download | prosody-c27589b44c5312d9119d0152ed4dcf1b5492414c.tar.gz prosody-c27589b44c5312d9119d0152ed4dcf1b5492414c.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_blocklist.lua')
-rw-r--r-- | plugins/mod_blocklist.lua | 2 |
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 ""); |