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 f2ccca074c

View File

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