diff options
author | Kim Alvefur <zash@zash.se> | 2016-01-16 22:44:43 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-01-16 22:44:43 +0100 |
commit | f763095b66a53b0fcc73f21a99478deabebd2a5b (patch) | |
tree | bde7b68581a288e5d3fc8a036c80502296972394 /plugins/mod_blocklist.lua | |
parent | e49c053133ec90f007ba2f8575773f3cf5c20b54 (diff) | |
parent | 92a6c7fbd21fd445f3bdeca240030264b1756961 (diff) | |
download | prosody-f763095b66a53b0fcc73f21a99478deabebd2a5b.tar.gz prosody-f763095b66a53b0fcc73f21a99478deabebd2a5b.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_blocklist.lua')
-rw-r--r-- | plugins/mod_blocklist.lua | 2 |
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); |