MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / tryAckReaction

Method tryAckReaction

src/runtime/adapters/feishu.ts:374–384  ·  view source on GitHub ↗
(messageId: string)

Source from the content-addressed store, hash-verified

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 }

Callers 1

handleIncomingMessageMethod · 0.95

Calls 1

addReactionMethod · 0.45

Tested by

no test coverage detected