mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_websocket: Silence the one warning instead of ignoring the entire file
This commit is contained in:
parent
2a66d6061b
commit
0ddec30924
2 changed files with 2 additions and 1 deletions
|
@ -140,7 +140,6 @@ if os.getenv("PROSODY_STRICT_LINT") ~= "1" then
|
|||
"plugins/mod_privacy.lua";
|
||||
"plugins/mod_storage_sql1.lua";
|
||||
"plugins/mod_storage_sql.lua";
|
||||
"plugins/mod_websocket.lua";
|
||||
|
||||
"spec/core_configmanager_spec.lua";
|
||||
"spec/core_moduleapi_spec.lua";
|
||||
|
|
|
@ -95,6 +95,8 @@ local function session_close(session, reason)
|
|||
session.send(st.stanza("close", { xmlns = xmlns_framing }));
|
||||
function session.send() return false; end
|
||||
|
||||
-- luacheck: ignore 422/reason
|
||||
-- FIXME reason should be handled in common place
|
||||
local reason = (reason and (reason.name or reason.text or reason.condition)) or reason;
|
||||
session.log("debug", "c2s stream for %s closed: %s", session.full_jid or ("<"..session.ip..">"), reason or "session closed");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue