add proper undefined checks

This commit is contained in:
2020-09-05 11:47:09 -05:00
parent d383cebe78
commit 4dc1f6d7c8
2 changed files with 6 additions and 2 deletions

View File

@@ -38,7 +38,9 @@ export default class FileResponseFactory extends ResponseFactory {
if ( content.headers && content.body && length ) {
request.response.body = content.body
request.response.headers.set('Content-Length', length)
request.response.headers.set('Content-Type', path.content_type)
if ( path.content_type )
request.response.headers.set('Content-Type', path.content_type)
} else {
this.logger.debug(`Tried to serve file that does not exist: ${path}`)
request.response.status = HTTPStatus.NOT_FOUND