From bfe7dbbca930c93d3132c6a0ac327a061c39a910 Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sun, 19 Jan 2025 20:13:25 +0100 Subject: [PATCH] feat: add proxy server --- routes/api/recipes/create/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api/recipes/create/index.ts b/routes/api/recipes/create/index.ts index 22028ad..9456743 100644 --- a/routes/api/recipes/create/index.ts +++ b/routes/api/recipes/create/index.ts @@ -246,7 +246,7 @@ export const handler: Handlers = { processCreateRecipeFromUrl({ fetchUrl, streamResponse }).then((article) => { log.debug("created article from link", { article }); }).catch((err) => { - streamResponse.enqueue(`error creating article: ${err}`); + streamResponse.enqueue(`error creating recipe: ${err}`); log.error(err); }).finally(() => { streamResponse.cancel();