diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-04 17:49:48 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-04 17:49:48 +0100 |
commit | 014168ff18ff0216c649ca687523ab96768a9b0d (patch) | |
tree | 91aa73ddb7089baef93b2e47966f53c5c945ed52 /core/moduleapi.lua | |
parent | c284110cb40cb2347f82e974f76eb6bc6927e946 (diff) | |
download | prosody-014168ff18ff0216c649ca687523ab96768a9b0d.tar.gz prosody-014168ff18ff0216c649ca687523ab96768a9b0d.zip |
core: Split some very long lines [luacheck]
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r-- | core/moduleapi.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua index ee1f3e60..34214f26 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -115,7 +115,8 @@ function api:hook_tag(xmlns, name, handler, priority) self:log("warn", "Error: Insufficient parameters to module:hook_stanza()"); return; end - return self:hook("stanza/"..(xmlns and (xmlns..":") or "")..name, function (data) return handler(data.origin, data.stanza, data); end, priority); + return self:hook("stanza/"..(xmlns and (xmlns..":") or "")..name, + function (data) return handler(data.origin, data.stanza, data); end, priority); end api.hook_stanza = api.hook_tag; -- COMPAT w/pre-0.9 @@ -187,7 +188,8 @@ function api:shared(...) local path = paths[i]; if path:sub(1,1) ~= "/" then -- Prepend default components local n_components = select(2, path:gsub("/", "%1")); - path = (n_components<#default_path_components and "/" or "")..t_concat(default_path_components, "/", 1, #default_path_components-n_components).."/"..path; + path = (n_components<#default_path_components and "/" or "") + ..t_concat(default_path_components, "/", 1, #default_path_components-n_components).."/"..path; end local shared = shared_data[path]; if not shared then |