diff options
Diffstat (limited to 'core/stanza_router.lua')
-rw-r--r-- | core/stanza_router.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 3126bb75..16658f30 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -209,7 +209,9 @@ function core_route_stanza(origin, stanza) elseif stanza.attr.type == "subscribe" then -- TODO elseif stanza.attr.type == "unsubscribe" then - -- TODO + if rostermanager.process_inbound_unsubscribe(node, host, from_bare) then + rostermanager.roster_push(node, host, from_bare); + end elseif stanza.attr.type == "subscribed" then if rostermanager.process_inbound_subscription_approval(node, host, from_bare) then rostermanager.roster_push(node, host, from_bare); |