diff options
| author | Dhravya Shah <[email protected]> | 2024-08-03 18:31:55 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-08-03 18:31:55 -0700 |
| commit | a327805a7d668bfa928564783e80a30adef96f88 (patch) | |
| tree | 0e682f238812b2ce663f6b82c01a8be30a1b29f3 /apps/web/app/api | |
| parent | fix: stuff (diff) | |
| download | supermemory-a327805a7d668bfa928564783e80a30adef96f88.tar.xz supermemory-a327805a7d668bfa928564783e80a30adef96f88.zip | |
calculate how fucked we are
Diffstat (limited to 'apps/web/app/api')
| -rw-r--r-- | apps/web/app/api/telegram/route.ts | 4 |
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; } |