aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pep_simple.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-12-08 17:09:55 +0100
committerKim Alvefur <zash@zash.se>2018-12-08 17:09:55 +0100
commit6dcf53f7b284f265ce3f2215e33c6f0c28be5ce9 (patch)
tree991be7adccaaef850782588d815116f580638323 /plugins/mod_pep_simple.lua
parente22dada0b27f0793bd88b4882fc73fcdc7936b6a (diff)
downloadprosody-6dcf53f7b284f265ce3f2215e33c6f0c28be5ce9.tar.gz
prosody-6dcf53f7b284f265ce3f2215e33c6f0c28be5ce9.zip
various: Don't rely on _G.unpack existing
Diffstat (limited to 'plugins/mod_pep_simple.lua')
-rw-r--r--plugins/mod_pep_simple.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_pep_simple.lua b/plugins/mod_pep_simple.lua
index f0b5d7ef..f91e5448 100644
--- a/plugins/mod_pep_simple.lua
+++ b/plugins/mod_pep_simple.lua
@@ -14,6 +14,7 @@ local is_contact_subscribed = require "core.rostermanager".is_contact_subscribed
local pairs = pairs;
local next = next;
local type = type;
+local unpack = table.unpack or unpack; -- luacheck: ignore 113
local calculate_hash = require "util.caps".calculate_hash;
local core_post_stanza = prosody.core_post_stanza;
local bare_sessions = prosody.bare_sessions;