net.httpserver: Make function local, fixes loading since there is no environment [luacheck]

This commit is contained in:
Kim Alvefur 2018-03-23 13:20:19 +01:00
parent 51b193594f
commit bf9705c70b

View file

@ -5,7 +5,7 @@ local traceback = debug.traceback;
local _ENV = nil;
-- luacheck: std none
function fail()
local function fail()
log("error", "Attempt to use legacy HTTP API. For more info see https://prosody.im/doc/developers/legacy_http");
log("error", "Legacy HTTP API usage, %s", traceback("", 2));
end