Fix mimetype for javascript, #1559

pull/1562/head
ziajka 5 years ago
parent cbb6eccad8
commit 3f4bdfef11

@ -92,7 +92,13 @@ class IndexHandler:
if static is None or not os.path.exists(static):
static = get_resource(os.path.join('static', 'web-ui', 'index.html'))
await response.stream_file(static)
# guesstype prefers to have text/html type than application/javascript
# which results with warnings in Firefox 66 on Windows
# Ref. gns3-server#1559
_, ext = os.path.splitext(static)
mimetype = ext == '.js' and 'application/javascript' or None
await response.stream_file(static, status=200, set_content_type=mimetype)
@Route.get(
r"/v1/version",

@ -118,6 +118,7 @@ class Response(aiohttp.web.Response):
"""
Stream a file as a response
"""
encoding = None
if not os.path.exists(path):
raise aiohttp.web.HTTPNotFound()

Loading…
Cancel
Save