mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.dependencies: Consider Lua 5.4 Supported™️
I have been running my own server exclusively on Lua 5.4 for months and apart from packaging issues I remember on major issues.
This commit is contained in:
parent
0a4923938a
commit
74e1de54fd
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ local function check_dependencies()
|
||||||
end
|
end
|
||||||
|
|
||||||
local function log_warnings()
|
local function log_warnings()
|
||||||
if _VERSION > "Lua 5.3" then
|
if _VERSION > "Lua 5.4" then
|
||||||
prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION);
|
prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION);
|
||||||
end
|
end
|
||||||
local ssl = softreq"ssl";
|
local ssl = softreq"ssl";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue