# HG changeset patch # User Waqas Hussain # Date 1290912968 -18000 # Node ID 98b55c3a3deb356e75514284cbacd465ba528257 # Parent 345cd1e04e80371e29c5c27f572e32b8cb793943 mod_disco: Fixed: Service discovery features were not being removed on module unload (issue #205). diff -r 345cd1e04e80 -r 98b55c3a3deb plugins/mod_disco.lua --- a/plugins/mod_disco.lua Sun Nov 28 07:43:19 2010 +0500 +++ b/plugins/mod_disco.lua Sun Nov 28 07:56:08 2010 +0500 @@ -81,6 +81,8 @@ module:hook("item-added/identity", clear_disco_cache); module:hook("item-added/feature", clear_disco_cache); +module:hook("item-removed/identity", clear_disco_cache); +module:hook("item-removed/feature", clear_disco_cache); -- Handle disco requests to the server module:hook("iq/host/http://jabber.org/protocol/disco#info:query", function(event)