fixes for reactions

This commit is contained in:
MathMan05 2024-08-13 14:32:56 -05:00
parent 6d47156288
commit 190f29c869
3 changed files with 3 additions and 3 deletions

View file

@ -79,7 +79,7 @@ class Message {
}
let reactiontxt;
if (emoji instanceof Emoji) {
reactiontxt = emoji.id;
reactiontxt = `${emoji.name}:${emoji.id}`;
}
else {
reactiontxt = encodeURIComponent(emoji);