X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=plugins%2Fmod_blocklist.lua;h=8efbfd965295ab0ad250692831178e6112b1a9e2;hb=5e96c680db7c1b3e640c1ba320f767a3f3483609;hp=e2ed626b36ae5a5425f4baf07a1b95565a1565af;hpb=6e214219dada96e4abf9bf10a3beb1ac7cc01d7e;p=prosody.git 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);