diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-11-26 13:06:52 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-11-26 13:06:52 +0500 |
commit | d3aa2ff4e6469edb368f272bec11dff9658faaa4 (patch) | |
tree | 92c34d551eee2a0f7b9fa8831508ce34faf1ec4d /plugins/mod_presence.lua | |
parent | b544f41cef7692b6d4672b9784637051131d03ad (diff) | |
parent | 0554c71543ee4a199b056accac6a4bc1bc26d216 (diff) | |
download | prosody-d3aa2ff4e6469edb368f272bec11dff9658faaa4.tar.gz prosody-d3aa2ff4e6469edb368f272bec11dff9658faaa4.zip |
Merge with 0.6.
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r-- | plugins/mod_presence.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index cda8dab0..d3818a5d 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -200,9 +200,6 @@ function handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_ rostermanager.roster_push(node, host, to_bare); end core_route_stanza(origin, stanza); - -- COMPAT: Some legacy clients keep displaying unsubscribed contacts as online unless an unavailable presence is sent: - send_presence_of_available_resources(node, host, to_bare, origin, core_route_stanza, - st.presence({ type="unavailable", from=from_bare, to=to_bare, id=stanza.attr.id })); end stanza.attr.from, stanza.attr.to = st_from, st_to; end @@ -233,7 +230,7 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b -- TODO send last recieved unavailable presence (or we MAY do nothing, which is fine too) end else - core_route_stanza(origin, st.presence({from=to_bare, to=from_bare, type="unavailable"})); -- acknowledging receipt + core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unavailable"})); -- acknowledging receipt if not rostermanager.is_contact_pending_in(node, host, from_bare) then if rostermanager.set_contact_pending_in(node, host, from_bare) then sessionmanager.send_to_available_resources(node, host, stanza); |