What happened?
メンションが設定できない
Error message or Bug description
以下の引数にcontentMetadataがあるけど、sendMessageに設定されていないためメンションができない
|
async reply( |
|
input: string | { |
|
text?: string; |
|
contentType?: ContentType; |
|
contentMetadata?: Record<string, string>; |
|
relatedMessageId?: string; |
|
location?: Location; |
|
}, |
|
): Promise<void> { |
|
if (typeof input === "string") { |
|
return this.reply({ |
|
text: input, |
|
}); |
|
} |
|
|
|
await this.#client.base.square.sendMessage({ |
|
relatedMessageId: this.raw.message.id, |
|
squareChatMid: this.raw.message.to, |
|
text: input.text, |
|
}); |
|
} |
Environment
What happened?
メンションが設定できない
Error message or Bug description
以下の引数にcontentMetadataがあるけど、sendMessageに設定されていないためメンションができない
linejs/packages/linejs/client/features/message/square.ts
Lines 45 to 65 in 423925e
Environment