aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-06-29 19:19:38 +0200
committerKim Alvefur <zash@zash.se>2019-06-29 19:19:38 +0200
commitc6ca3b473e60f56a20113a3ab9d8a33231aae0e5 (patch)
treea59589bad391a5a04d7f769d2d6d256acb78c5c2
parentde37e6cb589e0124b93a38721c8ad809ba762b16 (diff)
downloadprosody-c6ca3b473e60f56a20113a3ab9d8a33231aae0e5.tar.gz
prosody-c6ca3b473e60f56a20113a3ab9d8a33231aae0e5.zip
net.http.files: Fix cache handling
Typo that broke the LRU-ness of the caching
-rw-r--r--net/http/files.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/files.lua b/net/http/files.lua
index 090b15c8..7ff81fc8 100644
--- a/net/http/files.lua
+++ b/net/http/files.lua
@@ -94,7 +94,7 @@ local function serve(opts)
if data and data.etag == etag then
response_headers.content_type = data.content_type;
data = data.data;
- cache:get(orig_path, data);
+ cache:set(orig_path, data);
elseif attr.mode == "directory" and path then
if full_path:sub(-1) ~= "/" then
local dir_path = { is_absolute = true, is_directory = true };