aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-04-24 22:58:46 +0100
committerMatthew Wild <mwild1@gmail.com>2018-04-24 22:58:46 +0100
commit9972a600aa6cffdf59737172caf79e55713f3c59 (patch)
tree61c1b4ef8ad195dbaef98db2fbacb1fa86e0f530 /util
parentc4f68640bb3e57fd9c9570a80528f8cf2c575cad (diff)
downloadprosody-9972a600aa6cffdf59737172caf79e55713f3c59.tar.gz
prosody-9972a600aa6cffdf59737172caf79e55713f3c59.zip
util.events: Fix loop construct (negative step required)
Diffstat (limited to 'util')
-rw-r--r--util/events.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/events.lua b/util/events.lua
index e2943e44..6e13619c 100644
--- a/util/events.lua
+++ b/util/events.lua
@@ -125,7 +125,7 @@ local function new()
w = wrappers[event_name];
end
if not w then return; end
- for i = #w, 1 do
+ for i = #w, 1, -1 do
if w[i] == wrapper then
t_remove(w, i);
end