mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Fixed broken poll card
This commit is contained in:
parent
21185c5686
commit
3706d45e51
1 changed files with 1 additions and 2 deletions
|
@ -77,11 +77,10 @@ export const renderCard = async (
|
||||||
const bar = '█'.repeat(Math.round((votes / totalVotes || 0) * barLength));
|
const bar = '█'.repeat(Math.round((votes / totalVotes || 0) * barLength));
|
||||||
str += `${bar}
|
str += `${bar}
|
||||||
${label} (${Math.round((votes / totalVotes || 0) * 100)}%)
|
${label} (${Math.round((votes / totalVotes || 0) * 100)}%)
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
str += `\n${totalVotes} votes · ${timeLeft}`;
|
str += `\n${totalVotes} votes · ${timeLeft}`;
|
||||||
|
|
||||||
console.log(str);
|
console.log(str);
|
||||||
/* Oh good, a non-Twitter video URL! This enables YouTube embeds and stuff to just work */
|
/* Oh good, a non-Twitter video URL! This enables YouTube embeds and stuff to just work */
|
||||||
} else if (typeof values.player_url !== 'undefined') {
|
} else if (typeof values.player_url !== 'undefined') {
|
||||||
|
|
Loading…
Add table
Reference in a new issue