Skip to content

Commit

Permalink
Fix incorrect end tag in redirects
Browse files Browse the repository at this point in the history
closes #100
  • Loading branch information
antryko authored and dougwilson committed Feb 7, 2018
1 parent 1e02a06 commit 2512555
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
@@ -1,10 +1,10 @@
unreleased
==========

* Fix incorrect end tag in redirects
* deps: encodeurl@~1.0.2
- Fix encoding `%` as last character
* deps: send@0.16.2
- Fix incorrect end tag in default error & redirects
- deps: depd@~1.1.2
- deps: encodeurl@~1.0.2
- deps: statuses@~1.4.0
Expand Down
3 changes: 2 additions & 1 deletion index.js
Expand Up @@ -159,7 +159,8 @@ function createHtmlDocument (title, body) {
'</head>\n' +
'<body>\n' +
'<pre>' + body + '</pre>\n' +
'</body>\n'
'</body>\n' +
'</html>\n'
}

/**
Expand Down

0 comments on commit 2512555

Please sign in to comment.