Software /
code /
prosody
Diff
plugins/mod_blocklist.lua @ 7085:343be83ddfa6
Merge 0.10->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 16 Jan 2016 22:44:43 +0100 (2016-01-16) |
parent | 7079:f094683ae6eb |
child | 7620:c27c9695d130 |
line wrap: on
line diff
--- a/plugins/mod_blocklist.lua Mon Jan 11 13:44:48 2016 +0100 +++ b/plugins/mod_blocklist.lua Sat Jan 16 22:44:43 2016 +0100 @@ -221,7 +221,7 @@ -- 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);