From 985ccf3e8ac549a6a1eb422cf11b0d1eafaa95f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20Jurmanovi=C4=87?= Date: Sat, 9 Aug 2025 12:40:19 +0200 Subject: [PATCH] remove throw error on channel message fail --- src/common/sendDiscordMessage.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/sendDiscordMessage.ts b/src/common/sendDiscordMessage.ts index b56ff0c..24247e5 100644 --- a/src/common/sendDiscordMessage.ts +++ b/src/common/sendDiscordMessage.ts @@ -68,7 +68,6 @@ export async function sendDiscordMessage( } } catch (err) { console.error(`Message to channel ${channel.id} failed.`); - throw err; } }); await Promise.all(promises);