fedimbed.polls: round percents, add counts
This commit is contained in:
parent
0e4aa68fc9
commit
c4f8d53321
1 changed files with 5 additions and 3 deletions
|
@ -623,12 +623,14 @@ async function processUrl(msg, url, spoiler = false) {
|
|||
const percent = o.count / poll.total;
|
||||
const bar = Math.round(percent * 30);
|
||||
|
||||
return `**${o.name}** (${(percent * 100).toFixed(
|
||||
2
|
||||
return `**${o.name}** (${o.count}, ${Math.round(
|
||||
percent * 100
|
||||
)}%)\n\`[${"=".repeat(bar)}${" ".repeat(30 - bar)}]\``;
|
||||
})
|
||||
.join("\n\n") +
|
||||
`\n\nEnds: <t:${Math.floor(poll.end.getTime() / 1000)}:R>`,
|
||||
`\n\n${poll.total} votes \u2022 Ends <t:${Math.floor(
|
||||
poll.end.getTime() / 1000
|
||||
)}:R>`,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue