mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_csi_simple: Tweak check for <body>
There were code that checked the body for mentions but isn't included.
This commit is contained in:
parent
1e9a016034
commit
38c98346b1
1 changed files with 4 additions and 2 deletions
|
@ -63,8 +63,10 @@ module:hook("csi-is-stanza-important", function (event)
|
|||
if st_type == "headline" then
|
||||
return false;
|
||||
end
|
||||
local body = stanza:get_child_text("body");
|
||||
return body;
|
||||
if stanza:get_child("body") then
|
||||
return true;
|
||||
end
|
||||
return false;
|
||||
end
|
||||
return true;
|
||||
end, -1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue