mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http: Rename loop variable to avoid name clash [luacheck]
This commit is contained in:
parent
c27c3940c7
commit
d0f783842e
1 changed files with 2 additions and 2 deletions
|
@ -137,8 +137,8 @@ function module.add_host(module)
|
|||
local function http_app_removed(event)
|
||||
local app_handlers = apps[event.item.name];
|
||||
apps[event.item.name] = nil;
|
||||
for event, handler in pairs(app_handlers) do
|
||||
module:unhook_object_event(server, event, handler);
|
||||
for event_name, handler in pairs(app_handlers) do
|
||||
module:unhook_object_event(server, event_name, handler);
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue