Skip to content

Commit

Permalink
fix: message
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKolarik committed Sep 30, 2024
1 parent 25076c5 commit f2d7175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/measurement/route/get-measurement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const handle = async (ctx: ParameterizedContext<DefaultState, DefaultContext & R
const result = await store.getMeasurementString(id);

if (!result) {
throw createHttpError(404, `Couldn't find the requested item.`, { type: 'not_found' });
throw createHttpError(404, `Couldn't find the requested measurement.`, { type: 'not_found' });
}

ctx.type = 'application/json';
Expand Down

0 comments on commit f2d7175

Please sign in to comment.