Compare commits
2 commits
a5e824d5f0
...
1c82c1d5ca
Author | SHA1 | Date | |
---|---|---|---|
|
1c82c1d5ca | ||
|
b7033305ec |
1 changed files with 14 additions and 10 deletions
|
@ -72,11 +72,12 @@ if (!config.token) {
|
|||
.setDescription("API test")
|
||||
.addFields(Object.values(results[year][0].candidates).map((candidate: any) => ({
|
||||
name: `${candidate.winner ? ":white_check_mark:" : ""} ${CandidateEmojis[candidate.party] ?? ""} ${candidate.name} ${candidate.incumbent ? "(I)" : ""} (${candidate.party})`,
|
||||
value: `${candidate.votes.toLocaleString()} votes (${candidate.percent}%)`,
|
||||
value: `${results[year][0].election_type === "electoral" ? `${candidate.electoral_votes} electoral votes\n` : ""} ${candidate.votes.toLocaleString()} votes (${candidate.percent}%)`,
|
||||
inline: true
|
||||
})))
|
||||
.setTimestamp();
|
||||
|
||||
if(results[year][0].has_map === true) {
|
||||
const map = await fetch(`http://127.0.0.1:3000/api/v1/election/${country}/${election_type}/${year}/map`); // temp test url
|
||||
if (map.ok) {
|
||||
const arrayBuffer = await map.arrayBuffer();
|
||||
|
@ -88,7 +89,10 @@ if (!config.token) {
|
|||
await i.editReply({embeds: [embed]});
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
await i.editReply({embeds: [embed]});
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
await i.editReply("Election not found");
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue