(messageId: string)
| 372 | } |
| 373 | |
| 374 | return chunks; |
| 375 | } |
| 376 | |
| 377 | private async tryAckReaction(messageId: string): Promise<void> { |
| 378 | if (!this.channel) { |
| 379 | return; |
| 380 | } |
| 381 | |
| 382 | try { |
| 383 | await this.channel.addReaction(messageId, ACK_REACTION); |
| 384 | } catch (error) { |
| 385 | console.error("[Feishu] Failed to add ack reaction:", error); |
| 386 | } |
| 387 | } |
no test coverage detected