diff -r 26bb69a57749 -r bcd7dc51a5e3 mod_blocking/mod_blocking.lua --- a/mod_blocking/mod_blocking.lua Mon Jun 14 12:25:53 2010 +0100 +++ b/mod_blocking/mod_blocking.lua Mon Jun 14 12:26:25 2010 +0100 @@ -71,7 +71,7 @@ if not default_list then return; end local items = default_list.items; local item; - for i=#items,1 do -- order must be unique + for i=#items,1,-1 do -- order must be unique item = items[i]; if item.type == "jid" and item.action == "deny" then table.remove(items, i);