mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_blocklist: Clear second level cache when user is deleted
This commit is contained in:
parent
6d8484bb7b
commit
b2f0349c7e
1 changed files with 1 additions and 0 deletions
|
@ -186,6 +186,7 @@ module:hook("iq-set/self/urn:xmpp:blocking:unblock", edit_blocklist);
|
||||||
-- Cache invalidation, solved!
|
-- Cache invalidation, solved!
|
||||||
module:hook_global("user-deleted", function (event)
|
module:hook_global("user-deleted", function (event)
|
||||||
if event.host == module.host then
|
if event.host == module.host then
|
||||||
|
cache:set(event.username, nil);
|
||||||
cache[event.username] = nil;
|
cache[event.username] = nil;
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue