mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_csi_simple: Fix treating presence errors as presence updates
Autocomplete fail probably.
This commit is contained in:
parent
ade3caf1ad
commit
749ed917c1
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ function is_important(stanza) --> boolean, reason: string
|
|||
if not st_name then return false; end
|
||||
local st_type = stanza.attr.type;
|
||||
if st_name == "presence" then
|
||||
if st_type == nil or st_type == "unavailable" or st_name == "error" then
|
||||
if st_type == nil or st_type == "unavailable" or st_type == "error" then
|
||||
return false, "presence update";
|
||||
end
|
||||
-- TODO Some MUC awareness, e.g. check for the 'this relates to you' status code
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue