remove throw error on channel message fail

This commit is contained in:
Fran Jurmanović
2025-08-09 12:40:19 +02:00
parent 01866b302e
commit 985ccf3e8a

View File

@@ -68,7 +68,6 @@ export async function sendDiscordMessage(
} }
} catch (err) { } catch (err) {
console.error(`Message to channel ${channel.id} failed.`); console.error(`Message to channel ${channel.id} failed.`);
throw err;
} }
}); });
await Promise.all(promises); await Promise.all(promises);