text: improve wording of taxonomy 404
Alan Pearce alan@alanpearce.eu
Sat, 24 Jun 2017 22:25:16 +0200
1 files changed, 1 insertions(+), 5 deletions(-)
jump to
M src/actions.js → src/actions.js
@@ -27,11 +27,7 @@ function taxonGenerator (config, term, items) { return async function (ctx, next) { const value = ctx.params.value - ctx.assert( - items.has(ctx.params.value), - 404, - `Could not find ${term} ${value}` - ) + ctx.assert(items.has(ctx.params.value), 404, `${term} ${value} not found`) const taxonItems = toArrayStream(items.get(value))