mod_csi_simple: Fix treating presence errors as presence updates

Autocomplete fail probably.
This commit is contained in:
Kim Alvefur 2020-05-09 13:33:26 +02:00
parent ade3caf1ad
commit 749ed917c1

View file

@ -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