mirror of https://gitlab.com/bashrc2/epicyon
lower case content length
parent
caee3671f8
commit
a9d10593f2
|
@ -687,7 +687,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
# use lower case
|
# use lower case
|
||||||
self.send_header('content-type', fileFormat)
|
self.send_header('content-type', fileFormat)
|
||||||
if length > -1:
|
if length > -1:
|
||||||
self.send_header('content-Length', str(length))
|
self.send_header('content-length', str(length))
|
||||||
self.send_header('host', callingDomain)
|
self.send_header('host', callingDomain)
|
||||||
return
|
return
|
||||||
self.send_header('Content-type', fileFormat)
|
self.send_header('Content-type', fileFormat)
|
||||||
|
|
Loading…
Reference in New Issue