(
client: any,
route: SlackRoute,
)
| 541 | await this.sendSafe(client, route, text); |
| 542 | } |
| 543 | |
| 544 | private async sendPlaceholderMessage( |
| 545 | client: any, |
| 546 | route: SlackRoute, |
| 547 | ): Promise<SlackPostedMessage | null> { |
| 548 | try { |
| 549 | return await this.sendWithRetry(client, route, PROCESSING_MESSAGE); |
| 550 | } catch (err) { |
| 551 | console.error("[Slack] Failed to send placeholder message:", err); |
| 552 | return null; |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | private async sendWithRetry( |