mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Only match on modification date when if-none-match is not present
This commit is contained in:
parent
f098458b69
commit
d1880e05fd
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ function serve_file(event, path)
|
|||
local if_none_match = request_headers.if_none_match
|
||||
local if_modified_since = request_headers.if_modified_since;
|
||||
if etag == if_none_match
|
||||
or last_modified == if_modified_since then
|
||||
or (not if_none_match and last_modified == if_modified_since) then
|
||||
return 304;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue