Hi, I'm building a bot to pull info from the api and came across a problem with how status is displayed
From the json file, it's
"status": [ "In hospital for 1 hrs 14 mins ", "Hospitalized by Person" ],
Which is fine as long as the link is being displayed on Torn, but for discord obviously it won't work.
My code is something like
let embed = new Discord.RichEmbed()
...
.addField("Status", entry.status)
...
message.channel.send(embed);
});
Which works fine, but in discord the link doesn't work, as such
[image: i.imgur.com]
So, my question is.. is anyone familiar enough with Node to point me in the right direction to either parse that how I want, or be able to format at least the link to a working link for discord?
Mentions: Person [1234]