mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_csi_simple: Identify raw string data in logging and stats
This commit is contained in:
parent
d4c1384269
commit
9b7ab06ef3
1 changed files with 3 additions and 1 deletions
|
@ -16,8 +16,10 @@ local queue_size = module:get_option_number("csi_queue_size", 256);
|
|||
local important_payloads = module:get_option_set("csi_important_payloads", { });
|
||||
|
||||
function is_important(stanza) --> boolean, reason: string
|
||||
if not st.is_stanza(stanza) then
|
||||
if type(stanza) == "string" then
|
||||
-- whitespace pings etc
|
||||
return true, "raw data";
|
||||
elseif not st.is_stanza(stanza) then
|
||||
return true;
|
||||
end
|
||||
if stanza.attr.xmlns ~= nil then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue