From 5db1231a36949af6b970475205ceb78842b12951 Mon Sep 17 00:00:00 2001 From: Shamzic Date: Mon, 28 Oct 2024 17:06:13 +0100 Subject: [PATCH] =?UTF-8?q?refactor:=20supprime=20un=20log=20sentry=20Ce?= =?UTF-8?q?=20log=20a=20=C3=A9t=C3=A9=20indentifi=C3=A9=20comme=20non=20n?= =?UTF-8?q?=C3=A9cessaire=20au=20vu=20des=20erreurs=20qu'il=20pourrait=20r?= =?UTF-8?q?emonter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/controllers/followups.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/controllers/followups.ts b/backend/controllers/followups.ts index b203fd4e75..24321fd932 100644 --- a/backend/controllers/followups.ts +++ b/backend/controllers/followups.ts @@ -221,7 +221,6 @@ export async function logSurveyLinkClick(req: Request, res: Response) { const redirectUrl = await getRedirectUrl(req) res.redirect(redirectUrl) } catch (error) { - Sentry.captureException(error) return res.sendStatus(ErrorStatus.NotFound) } }