mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_blocklist: Split long line [luacheck]
This commit is contained in:
parent
255423ab56
commit
e1a8887ccd
1 changed files with 4 additions and 1 deletions
|
@ -228,8 +228,11 @@ end);
|
||||||
|
|
||||||
-- Buggy clients
|
-- Buggy clients
|
||||||
module:hook("iq-error/self/blocklist-push", function (event)
|
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 = 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 "");
|
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 "");
|
||||||
return true;
|
return true;
|
||||||
end);
|
end);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue