# HG changeset patch # User Kim Alvefur # Date 1460126123 -7200 # Node ID 81efa212db1e28f6987048db1e0996c6443943fc # Parent 79a5db780e8b26bbf52b5e68412cc3ee1ef1d759 mod_presence: Construct a 'from' JID when roster items are removed outside of a session diff -r 79a5db780e8b -r 81efa212db1e plugins/mod_presence.lua --- a/plugins/mod_presence.lua Wed Apr 06 21:29:30 2016 +0200 +++ b/plugins/mod_presence.lua Fri Apr 08 16:35:23 2016 +0200 @@ -364,18 +364,19 @@ local roster = event.roster or session and session.roster; local jid = event.jid; local item = event.item; + local from_jid = origin.full_jid or (username .. "@" .. module.host); local subscription = item and item.subscription or "none"; local ask = item and item.ask; local pending = roster and roster[false].pending[jid]; if subscription == "both" or subscription == "from" or pending then - core_post_stanza(session, st.presence({type="unsubscribed", from=session.full_jid, to=jid})); + core_post_stanza(session, st.presence({type="unsubscribed", from=from_jid, to=jid})); end if subscription == "both" or subscription == "to" or ask then send_presence_of_available_resources(username, module.host, jid, session, st.presence({type="unavailable"})); - core_post_stanza(session, st.presence({type="unsubscribe", from=session.full_jid, to=jid})); + core_post_stanza(session, st.presence({type="unsubscribe", from=from_jid, to=jid})); end end, -1);