we can save an api call here

This commit is contained in:
dartz 2024-07-23 17:47:14 -04:00
parent a5e824d5f0
commit b7033305ec

View file

@ -77,6 +77,7 @@ if (!config.token) {
}))) })))
.setTimestamp(); .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 const map = await fetch(`http://127.0.0.1:3000/api/v1/election/${country}/${election_type}/${year}/map`); // temp test url
if (map.ok) { if (map.ok) {
const arrayBuffer = await map.arrayBuffer(); const arrayBuffer = await map.arrayBuffer();
@ -88,7 +89,10 @@ if (!config.token) {
await i.editReply({embeds: [embed]}); await i.editReply({embeds: [embed]});
break; break;
} }
} else {
await i.editReply({embeds: [embed]});
break; break;
}
} else { } else {
await i.editReply("Election not found"); await i.editReply("Election not found");
break; break;