Skip to content

Commit 6b29a21

Browse files
authored
fix: qouted reply missing chatid and options
1 parent 31f73f7 commit 6b29a21

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/events/message.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ export default async function (msg: Message, type: string): Promise<void> {
229229

230230
if (msg.hasQuotedMsg) {
231231
const quoted = await msg.getQuotedMessage();
232-
return await quoted.reply(messageBody);
232+
return await quoted.reply(messageBody, chatId, options);
233233
}
234234

235235
return await originalReply(messageBody, chatId, options);

0 commit comments

Comments
 (0)