modulemanager: Handle multiple digits in Lua version number

Lua has a slow release cycle, but it would be nice if Prosody doesn't break
unnecessarily with 5.10 :)
This commit is contained in:
Matthew Wild 2025-01-09 16:06:53 +00:00
parent d0457564a3
commit f6ed03a903

View file

@ -26,7 +26,7 @@ local xpcall = require "prosody.util.xpcall".xpcall;
local debug_traceback = debug.traceback;
local setmetatable, rawget = setmetatable, rawget;
local ipairs, pairs, type, t_insert = ipairs, pairs, type, table.insert;
local lua_version = _VERSION:match("5%.%d$");
local lua_version = _VERSION:match("5%.%d+$");
local autoload_modules = {
prosody.platform,