diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-08 17:09:55 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-08 17:09:55 +0100 |
commit | 6dcf53f7b284f265ce3f2215e33c6f0c28be5ce9 (patch) | |
tree | 991be7adccaaef850782588d815116f580638323 /net/resolvers/manual.lua | |
parent | e22dada0b27f0793bd88b4882fc73fcdc7936b6a (diff) | |
download | prosody-6dcf53f7b284f265ce3f2215e33c6f0c28be5ce9.tar.gz prosody-6dcf53f7b284f265ce3f2215e33c6f0c28be5ce9.zip |
various: Don't rely on _G.unpack existing
Diffstat (limited to 'net/resolvers/manual.lua')
-rw-r--r-- | net/resolvers/manual.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/resolvers/manual.lua b/net/resolvers/manual.lua index c0d4e5d5..dbc40256 100644 --- a/net/resolvers/manual.lua +++ b/net/resolvers/manual.lua @@ -1,5 +1,6 @@ local methods = {}; local resolver_mt = { __index = methods }; +local unpack = table.unpack or unpack; -- luacheck: ignore 113 -- Find the next target to connect to, and -- pass it to cb() |