compat: Remove handling of Lua 5.1 location of 'unpack' function

This commit is contained in:
Kim Alvefur 2022-07-11 19:07:38 +02:00
parent d055a704d8
commit 5251c9b686
17 changed files with 17 additions and 17 deletions

View file

@ -14,7 +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 unpack = table.unpack;
local calculate_hash = require "util.caps".calculate_hash;
local core_post_stanza = prosody.core_post_stanza;
local bare_sessions = prosody.bare_sessions;