Is your feature request related to a problem? Please describe.
Is there any way to get the sticker info when retrieving the message? like the name and author from the message data?
I'm creating a guessing game with stickers, and recovering this data would help a lot.
Describe the solution you'd like.
in quoted raw
console.log(message)
Message {
_data: {
....,
quotedMsg: {
type: 'sticker',
// caption: "◓ caption test", // perfect solution for what I need
stickerAuthorName: "Bit Bot Stickers",
stickerName: "◓ Quem é esse pokemon?"
}
}
}
or when getting quoted info:
(not so much performatic, but it would solve the problem)
const quoted = message.getQuotedMessage()
console.log(quoted)
Message {
...,
type: 'sticker',
stickerAuthorName: "Bit Bot Stickers",
stickerName: "◓ Quem é esse pokemon?"
}
Describe an alternate solution.
It would also help if I could hide information in the message/sticker, then I would send it with a "secret" that I chose or a caption inside sticker
Is there an existing issue for this?
Is your feature request related to a problem? Please describe.
Is there any way to get the sticker info when retrieving the message? like the name and author from the message data? I'm creating a guessing game with stickers, and recovering this data would help a lot.
Describe the solution you'd like.
in quoted raw
or when getting quoted info: (not so much performatic, but it would solve the problem)
Describe an alternate solution.
It would also help if I could hide information in the message/sticker, then I would send it with a "secret" that I chose or a caption inside sticker
Additional context
No response