From 905177f0b664d88efe8ed4bca9cbb120962d9a4b Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 13 Jun 2025 00:09:33 -0400 Subject: [PATCH] Don't present internal error messages as if they are localized --- src/utils/errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/errors.ts b/src/utils/errors.ts index e8adbca1..674cfdec 100644 --- a/src/utils/errors.ts +++ b/src/utils/errors.ts @@ -99,7 +99,7 @@ export class UnknownCallError extends ElementCallError { t("error.generic"), ErrorCode.UNKNOWN_ERROR, ErrorCategory.UNKNOWN, - error.message, + undefined, // Properly set it as a cause for a better reporting on sentry error, );