Software /
code /
prosody
Changeset
3174:070424f77629
mod_presence: Send unavailable presence in response to probes to the sender's full JID, not bare JID.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Thu, 03 Jun 2010 18:01:05 +0500 |
parents | 3173:bb4286962d69 |
children | 3175:a7f1329c5e3c |
files | plugins/mod_presence.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_presence.lua Thu Jun 03 17:48:50 2010 +0500 +++ b/plugins/mod_presence.lua Thu Jun 03 18:01:05 2010 +0500 @@ -231,7 +231,7 @@ local result, err = rostermanager.is_contact_subscribed(node, host, from_bare); if result then if 0 == send_presence_of_available_resources(node, host, st_from, origin) then - core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unavailable"})); -- TODO send last activity + core_route_stanza(hosts[host], st.presence({from=to_bare, to=st_from, type="unavailable"})); -- TODO send last activity end elseif not err then core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unsubscribed"}));