diff -r 2d3080d02960 -r 05c250fa335a plugins/mod_http_files.lua --- a/plugins/mod_http_files.lua Sun Mar 06 15:13:50 2022 +0100 +++ b/plugins/mod_http_files.lua Mon Mar 07 00:13:56 2022 +0100 @@ -75,12 +75,12 @@ opts.index_files = dir_indices; end -- TODO Crank up to warning - module:log("debug", "%s should be updated to use 'net.http.files' insead of mod_http_files", get_calling_module()); + module:log("debug", "%s should be updated to use 'net.http.files' instead of mod_http_files", get_calling_module()); return fileserver.serve(opts); end function wrap_route(routes) - module:log("debug", "%s should be updated to use 'net.http.files' insead of mod_http_files", get_calling_module()); + module:log("debug", "%s should be updated to use 'net.http.files' instead of mod_http_files", get_calling_module()); for route,handler in pairs(routes) do if type(handler) ~= "function" then routes[route] = fileserver.serve(handler);