mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: send valid ETag header
RFC 2616 section 14 (header field definitions) shows that ETag header content should be wrapped in double quotes.
This commit is contained in:
parent
1e78e0f236
commit
b33e46e4ac
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ function serve(opts)
|
|||
local last_modified = os_date('!%a, %d %b %Y %H:%M:%S GMT', attr.modification);
|
||||
response_headers.last_modified = last_modified;
|
||||
|
||||
local etag = ("%02x-%x-%x-%x"):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0);
|
||||
local etag = ('"%02x-%x-%x-%x"'):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0);
|
||||
response_headers.etag = etag;
|
||||
|
||||
local if_none_match = request_headers.if_none_match
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue