diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-04-08 23:20:45 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-04-08 23:20:45 +0100 |
commit | ce51ad8d0741391ea8587e24c5f5d60f9be6a20f (patch) | |
tree | cbeb770350ce79445ee60fe455c9cadc7b6271d2 /core/presencemanager.lua | |
parent | 921fe046e5e580f57bd20353ec1997c356c02e64 (diff) | |
parent | 5a74e32109854347d7c437428d6c2c38c9974188 (diff) | |
download | prosody-ce51ad8d0741391ea8587e24c5f5d60f9be6a20f.tar.gz prosody-ce51ad8d0741391ea8587e24c5f5d60f9be6a20f.zip |
Merge
Diffstat (limited to 'core/presencemanager.lua')
-rw-r--r-- | core/presencemanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/presencemanager.lua b/core/presencemanager.lua index 29e684fb..db6bbf9a 100644 --- a/core/presencemanager.lua +++ b/core/presencemanager.lua @@ -28,7 +28,7 @@ module "presencemanager" function handle_presence(origin, stanza, from_bare, to_bare, core_route_stanza, inbound) local type = stanza.attr.type; - if type and type ~= "unavailable" then + if type and type ~= "unavailable" and type ~= "error" then if inbound then handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza); else |