Diff

util/dependencies.lua @ 7721:92f771147de8

util.dependencies: Disable warning about Lua 5.2 (but still warn about 5.3)
author Kim Alvefur <zash@zash.se>
date Fri, 18 Nov 2016 10:21:02 +0100
parent 7679:589e27b47d56
child 7723:488fddf88ffd
child 7766:5594d0caa5a8
line wrap: on
line diff
--- a/util/dependencies.lua	Fri Nov 18 10:19:34 2016 +0100
+++ b/util/dependencies.lua	Fri Nov 18 10:21:02 2016 +0100
@@ -136,7 +136,7 @@
 end
 
 local function log_warnings()
-	if _VERSION > "Lua 5.1" then
+	if _VERSION > "Lua 5.2" then
 		prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION);
 	end
 	local ssl = softreq"ssl";