foxwells.vinboard: properly preserve embed
This commit is contained in:
parent
df3167f33f
commit
72315f5248
1 changed files with 8 additions and 1 deletions
|
@ -322,10 +322,17 @@ async function processReaction(_msg, user, reaction) {
|
||||||
} -> ${trueCount})`
|
} -> ${trueCount})`
|
||||||
);
|
);
|
||||||
|
|
||||||
const props = await createBoardMessage(msg, trueCount, false);
|
const props = {
|
||||||
|
avatarURL: _boardMessage.author.avatarURL("png", 256),
|
||||||
|
username: _boardMessage.author.username,
|
||||||
|
threadID: VINBOARD_THREAD_ID,
|
||||||
|
embeds: _boardMessage.embeds,
|
||||||
|
wait: true,
|
||||||
|
};
|
||||||
props.attachments = [..._boardMessage.attachments.values()].map(
|
props.attachments = [..._boardMessage.attachments.values()].map(
|
||||||
(attach) => ({id: attach.id})
|
(attach) => ({id: attach.id})
|
||||||
);
|
);
|
||||||
|
props.embeds[0].title = `${trueCount} \u2b50`;
|
||||||
await vinboard_webhook.editMessage(_boardMessage.id, props);
|
await vinboard_webhook.editMessage(_boardMessage.id, props);
|
||||||
await setBoardEntry(msg.id, trueCount, _boardMessage.id);
|
await setBoardEntry(msg.id, trueCount, _boardMessage.id);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue