LittleKing205

Results 3 comments of LittleKing205

When I call `message.reply("content")`, it works. But when I try to add "`quotedMessageId`" manually to the options, the error occurs. Even if I copy the reply code one to one,...

I got it to run. Instead of using the message ID, the complete serialized ID must be used. `client.sendMessage("[email protected]", "Message Text", { quotedMessageId: "[email protected]_3EB096F95744A95428B0_out" });` instead of `client.sendMessage("[email protected]", "Message Text",...

The ID attribute in the message object is an object that also contains the serialized ID. ` client.on('message', message => { console.log(message.id._serialized); }); `