mod_http_files: Correct cache insertion (fixes #1130)

This commit is contained in:
Kim Alvefur 2018-04-17 18:40:57 +02:00
parent b9a0fc550e
commit c4f68640bb

View file

@ -144,7 +144,7 @@ function serve(opts)
if not data then
return 403;
end
cache[orig_path] = { data = data, content_type = mime_map.html; etag = etag; };
cache:set(orig_path, { data = data, content_type = mime_map.html; etag = etag; });
response_headers.content_type = mime_map.html;
else