mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Correct cache insertion (fixes #1130)
This commit is contained in:
parent
b9a0fc550e
commit
c4f68640bb
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue