aboutsummaryrefslogtreecommitdiff
path: root/apps/web
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2024-08-03 18:31:55 -0700
committerDhravya Shah <[email protected]>2024-08-03 18:31:55 -0700
commita327805a7d668bfa928564783e80a30adef96f88 (patch)
tree0e682f238812b2ce663f6b82c01a8be30a1b29f3 /apps/web
parentfix: stuff (diff)
downloadsupermemory-a327805a7d668bfa928564783e80a30adef96f88.tar.xz
supermemory-a327805a7d668bfa928564783e80a30adef96f88.zip
calculate how fucked we are
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/app/api/telegram/route.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/app/api/telegram/route.ts b/apps/web/app/api/telegram/route.ts
index 78837e5f..06499c7d 100644
--- a/apps/web/app/api/telegram/route.ts
+++ b/apps/web/app/api/telegram/route.ts
@@ -68,9 +68,9 @@ bot.on("message", async (ctx) => {
if (response.status !== 200) {
console.log("Failed to get response from backend");
console.log(response.status);
- console.log(await response.text());
await ctx.reply(
- "Sorry, I am not able to process your request at the moment.",
+ "Sorry, I am not able to process your request at the moment." +
+ (await response.text()),
);
return;
}