mod_blocklist: Clear second level cache when user is deleted

This commit is contained in:
Kim Alvefur 2015-12-05 22:46:50 +01:00
parent 6d8484bb7b
commit b2f0349c7e

View file

@ -186,6 +186,7 @@ module:hook("iq-set/self/urn:xmpp:blocking:unblock", edit_blocklist);
-- Cache invalidation, solved!
module:hook_global("user-deleted", function (event)
if event.host == module.host then
cache:set(event.username, nil);
cache[event.username] = nil;
end
end);