style: use simpler syntax for setting response type
Alan Pearce alan@alanpearce.eu
Sat, 24 Jun 2017 23:39:03 +0200
1 files changed, 3 insertions(+), 3 deletions(-)
jump to
M src/responders.js → src/responders.js
@@ -37,7 +37,7 @@ } module.exports = { home (ctx, config, postsStream) { - ctx.set('Content-Type', 'text/html') + ctx.type = 'html' ctx.body = templates .layout() .pipe(rheo()) @@ -50,7 +50,7 @@ .render() }, post (ctx, config, post) { - ctx.set('Content-Type', 'text/html') + ctx.type = 'html' ctx.body = templates .layout() .pipe(rheo()) @@ -62,7 +62,7 @@ .render() }, taxon (ctx, config, taxonItems) { - ctx.set('Content-Type', 'text/html') + ctx.type = 'html' ctx.body = templates .layout() .pipe(rheo())