mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
compat: Remove handling of Lua 5.1 location of 'unpack' function
This commit is contained in:
parent
d055a704d8
commit
5251c9b686
17 changed files with 17 additions and 17 deletions
|
@ -2,7 +2,7 @@ local promise_methods = {};
|
|||
local promise_mt = { __name = "promise", __index = promise_methods };
|
||||
|
||||
local xpcall = require "util.xpcall".xpcall;
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||
local unpack = table.unpack;
|
||||
|
||||
function promise_mt:__tostring()
|
||||
return "promise (" .. (self._state or "invalid") .. ")";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue