mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
modulemanager: add missing ipairs import.
This commit is contained in:
parent
a299b9096d
commit
4453095de2
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ local prosody = prosody;
|
|||
|
||||
local pcall, xpcall = pcall, xpcall;
|
||||
local setmetatable, rawget = setmetatable, rawget;
|
||||
local pairs, type, tostring, t_insert = pairs, type, tostring, table.insert;
|
||||
local ipairs, pairs, type, tostring, t_insert = ipairs, pairs, type, tostring, table.insert;
|
||||
|
||||
local debug_traceback = debug.traceback;
|
||||
local unpack, select = unpack, select;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue