Diff

plugins/mod_pubsub/pubsub.lib.lua @ 12589:39ae08180c81

compat: Remove handling of Lua 5.1 location of 'unpack' function
author Kim Alvefur <zash@zash.se>
date Mon, 11 Jul 2022 19:07:38 +0200
parent 12021:376522fb3f52
child 12636:e8934ce6ea0f
line wrap: on
line diff
--- a/plugins/mod_pubsub/pubsub.lib.lua	Mon Jul 11 17:32:13 2022 +0200
+++ b/plugins/mod_pubsub/pubsub.lib.lua	Mon Jul 11 19:07:38 2022 +0200
@@ -1,4 +1,4 @@
-local t_unpack = table.unpack or unpack; -- luacheck: ignore 113
+local t_unpack = table.unpack;
 local time_now = os.time;
 
 local jid_prep = require "util.jid".prep;