mod_blocklist: Clear second level cache correctly on user deletion

This commit is contained in:
Kim Alvefur 2016-01-11 15:35:51 +01:00
parent 0f3612a00a
commit 3c9b6a4a8d

View file

@ -221,7 +221,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);
cache2:set(event.username, nil);
cache[event.username] = nil;
end
end);