mirror of
https://github.com/bjc/prosody.git
synced 2025-04-02 20:57:39 +03:00
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:
parent
d0457564a3
commit
f6ed03a903
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue