From 638a996a850cb96e64626caee546017fc39c2b53 Mon Sep 17 00:00:00 2001 From: Luis Antonio Date: Sat, 27 Dec 2025 13:04:02 -0300 Subject: [PATCH] Update ErrorReportingWebhook.ts Signed-off-by: Luis Antonio --- src/util/notifications/ErrorReportingWebhook.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/util/notifications/ErrorReportingWebhook.ts b/src/util/notifications/ErrorReportingWebhook.ts index c3cd9db..be8079f 100644 --- a/src/util/notifications/ErrorReportingWebhook.ts +++ b/src/util/notifications/ErrorReportingWebhook.ts @@ -374,6 +374,10 @@ export async function sendErrorReport( error: Error | string, additionalContext?: Record ): Promise { + // Error reporting not available as 12/26/2025 because of vulnerabilities + // View here: https://ptb.discord.com/channels/1418201715009912866/1418201717098418249/1454198384813412534 + return + // Check if error reporting is enabled if (config.errorReporting?.enabled === false) { process.stderr.write('[ErrorReporting] Disabled in config (errorReporting.enabled = false)\n') @@ -382,7 +386,7 @@ export async function sendErrorReport( // Log that error reporting is enabled process.stderr.write('[ErrorReporting] Enabled, processing error...\n') - + try { pruneExpiredDisabledWebhooks() // Build candidate webhook list: