mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_blocklist: Clear second level cache correctly on user deletion
This commit is contained in:
parent
0f3612a00a
commit
3c9b6a4a8d
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,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);
|
cache2: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