diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-04-24 22:58:46 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-04-24 22:58:46 +0100 |
commit | 9a76ea7e31d5034607932ac304d89c40bf9c59bf (patch) | |
tree | 61c1b4ef8ad195dbaef98db2fbacb1fa86e0f530 /util | |
parent | 0abbfdab88397ffcb83f68551b6c03269ef099df (diff) | |
download | prosody-9a76ea7e31d5034607932ac304d89c40bf9c59bf.tar.gz prosody-9a76ea7e31d5034607932ac304d89c40bf9c59bf.zip |
util.events: Fix loop construct (negative step required)
Diffstat (limited to 'util')
-rw-r--r-- | util/events.lua | 2 |
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 |