aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-07-22 21:35:58 +0100
committerMatthew Wild <mwild1@gmail.com>2009-07-22 21:35:58 +0100
commit5b060062b756751929382941bcc19bc4d5b3d7dc (patch)
treeeedb4bef91050b9b02de9e4577a70d7aac10d220
parent52f34e07b24cf847fde92b24f525d9b4cd18214f (diff)
parent3be56d2e6e4be815e5b844513ab9791cf2ea7773 (diff)
downloadprosody-5b060062b756751929382941bcc19bc4d5b3d7dc.tar.gz
prosody-5b060062b756751929382941bcc19bc4d5b3d7dc.zip
Merge with 0.5
-rw-r--r--plugins/mod_presence.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua
index dbcf55d6..3ca3b35e 100644
--- a/plugins/mod_presence.lua
+++ b/plugins/mod_presence.lua
@@ -207,6 +207,11 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b
local st_from, st_to = stanza.attr.from, stanza.attr.to;
stanza.attr.from, stanza.attr.to = from_bare, to_bare;
log("debug", "inbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare);
+
+ if not node then
+ log("debug", "dropping presence sent to host or invalid address '%s'", tostring(to_bare));
+ end
+
if stanza.attr.type == "probe" then
if rostermanager.is_contact_subscribed(node, host, from_bare) then
if 0 == send_presence_of_available_resources(node, host, st_from, origin, core_route_stanza) then