mod_csi_simple: Explicitly mention iq stanzas

Should be more obvious that all iq stanzas are considered important.
Changes behavior for invalid things in the default namespace.
This commit is contained in:
Kim Alvefur 2020-04-26 11:40:48 +02:00
parent 37a42fa605
commit 0085d410b2

View file

@ -65,8 +65,9 @@ module:hook("csi-is-stanza-important", function (event)
end
end
return false;
elseif st_name == "iq" then
return true;
end
return true;
end, -1);
local function with_timestamp(stanza, from)