From 4b2db351c47b07195308cdb09ccfe08ce3076d0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Tue, 20 Jan 2026 06:34:27 +0100 Subject: [PATCH] fix: issues with sdk and bot detection --- apps/api/src/hooks/is-bot.hook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/hooks/is-bot.hook.ts b/apps/api/src/hooks/is-bot.hook.ts index d7ae1cd5..c01a231a 100644 --- a/apps/api/src/hooks/is-bot.hook.ts +++ b/apps/api/src/hooks/is-bot.hook.ts @@ -44,6 +44,6 @@ export async function isBotHook( } } - return reply.status(202).send('OK'); + return reply.status(202).send(); } }