aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_presence.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-05-24 00:04:22 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-05-24 00:04:22 +0500
commit1ee72fdb1161361d653bead96ea4fb140e9054cc (patch)
treec1c880491b7dfd0c112ed3b82c4397c84a9e0af5 /plugins/mod_presence.lua
parent42f63b21d79733a2198952245df0673434bd31d2 (diff)
downloadprosody-1ee72fdb1161361d653bead96ea4fb140e9054cc.tar.gz
prosody-1ee72fdb1161361d653bead96ea4fb140e9054cc.zip
mod_presence: Removed a useless check when handling incoming presence probes and subscriptions.
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r--plugins/mod_presence.lua4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua
index 535e65d7..255faecc 100644
--- a/plugins/mod_presence.lua
+++ b/plugins/mod_presence.lua
@@ -227,10 +227,6 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b
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