(
client: any,
route: SlackRoute,
text: string,
)
| 515 | } |
| 516 | |
| 517 | private async sendSafe( |
| 518 | client: any, |
| 519 | route: SlackRoute, |
| 520 | text: string, |
| 521 | ): Promise<void> { |
| 522 | try { |
| 523 | await this.sendWithRetry(client, route, text); |
| 524 | } catch (err) { |
| 525 | console.error("[Slack] Failed to send message:", err); |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | private async sendOrUpdateSafe( |
| 530 | client: any, |
no test coverage detected