jellz / warzone-stats

View Warzone info through Discord
4 stars 2 forks source link

If no ranks are found, return name none instead of nothing #12

Closed Atdit closed 5 years ago

jellz commented 5 years ago

A better way to accomplish this:

      embed.addField('Ranks', body.user.ranks.length === 0 ? '*(None)*' : (await getPlayerRanksFromIds(body.user.ranks)).map(rank => `\`${rank.name.toUpperCase()}\``).join('\n'), true);

Thank you for bringing the issue to my attention, though.