aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_presence.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-04-15 04:21:20 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-04-15 04:21:20 +0500
commit85faabc6f4c7ef61a843063562cc76d040cd3ff1 (patch)
tree40c8268b409c17cf2fb49b2d06360e68f749b4a1 /plugins/mod_presence.lua
parent6857f81a91e1368f8ec4280af4e64b2169e3cbb7 (diff)
downloadprosody-85faabc6f4c7ef61a843063562cc76d040cd3ff1.tar.gz
prosody-85faabc6f4c7ef61a843063562cc76d040cd3ff1.zip
Stopped using presencemanager in stanza_router
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r--plugins/mod_presence.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua
index 0d35feed..7b521c50 100644
--- a/plugins/mod_presence.lua
+++ b/plugins/mod_presence.lua
@@ -243,7 +243,7 @@ local function presence_handler(data)
if to == nil and stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" and stanza.attr.type ~= "error" then
handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza);
elseif not to then
- handle_normal_presence(origin, stanza);
+ handle_normal_presence(origin, stanza, core_route_stanza);
else
core_route_stanza(origin, stanza);
end
@@ -263,5 +263,3 @@ add_handler(module:get_host().."/presence", presence_handler);
module.unload = function()
remove_handler(module:get_host().."/presence", presence_handler);
end
-
-return _M;