aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-01-11 15:35:51 +0100
committerKim Alvefur <zash@zash.se>2016-01-11 15:35:51 +0100
commit0368fd8ee5b0dd137e44b2000a7fb7bfe24f7985 (patch)
tree2bffb453b6d82f2b3818cbfee71f535915d525ab /plugins
parentb8729825eedb4515da4df2d37f7bce5e21518442 (diff)
downloadprosody-0368fd8ee5b0dd137e44b2000a7fb7bfe24f7985.tar.gz
prosody-0368fd8ee5b0dd137e44b2000a7fb7bfe24f7985.zip
mod_blocklist: Clear second level cache correctly on user deletion
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_blocklist.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_blocklist.lua b/plugins/mod_blocklist.lua
index e2ed626b..8efbfd96 100644
--- a/plugins/mod_blocklist.lua
+++ b/plugins/mod_blocklist.lua
@@ -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);