mod_presence: Send unavailable presence in response to probes to the sender's full...
authorWaqas Hussain <waqas20@gmail.com>
Thu, 3 Jun 2010 13:01:05 +0000 (18:01 +0500)
committerWaqas Hussain <waqas20@gmail.com>
Thu, 3 Jun 2010 13:01:05 +0000 (18:01 +0500)
plugins/mod_presence.lua

index 20afc2da934f9af7a956bf57d7c41b767dc30b06..943e318f42b64f4d84fcecbdad65effffdb9d1c8 100644 (file)
@@ -231,7 +231,7 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b
                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"}));