use i instead of hardcoded link to the bot twitter page
This commit is contained in:
parent
fc74a7e746
commit
9f815707c2
1 changed files with 3 additions and 3 deletions
|
@ -157,7 +157,7 @@ class tweetCommand extends Command {
|
||||||
const publicEmbed = client.util.embed()
|
const publicEmbed = client.util.embed()
|
||||||
.setAuthor('Some user of discord said...')
|
.setAuthor('Some user of discord said...')
|
||||||
.setDescription(text)
|
.setDescription(text)
|
||||||
.addField('Link', `https://twitter.com/HahaYesDB/status/${tweetid}`)
|
.addField('Link', `https://twitter.com/i/status/${tweetid}`)
|
||||||
.setTimestamp();
|
.setTimestamp();
|
||||||
|
|
||||||
if (Attachment[0]) publicEmbed.setImage(Attachment[0].url);
|
if (Attachment[0]) publicEmbed.setImage(Attachment[0].url);
|
||||||
|
@ -169,7 +169,7 @@ class tweetCommand extends Command {
|
||||||
const Embed = client.util.embed()
|
const Embed = client.util.embed()
|
||||||
.setAuthor(message.author.username, message.author.displayAvatarURL())
|
.setAuthor(message.author.username, message.author.displayAvatarURL())
|
||||||
.setDescription(args.text)
|
.setDescription(args.text)
|
||||||
.addField('Link', `https://twitter.com/HahaYesDB/status/${tweetid}`, true)
|
.addField('Link', `https://twitter.com/i/status/${tweetid}`, true)
|
||||||
.addField('Tweet ID', tweetid, true)
|
.addField('Tweet ID', tweetid, true)
|
||||||
.addField('Author', `${message.author.username} (${message.author.id})`, true)
|
.addField('Author', `${message.author.username} (${message.author.id})`, true)
|
||||||
.addField('Guild', `${message.guild.name} (${message.guild.id})`, true)
|
.addField('Guild', `${message.guild.name} (${message.guild.id})`, true)
|
||||||
|
@ -180,7 +180,7 @@ class tweetCommand extends Command {
|
||||||
channel = client.channels.get(twiChannel);
|
channel = client.channels.get(twiChannel);
|
||||||
channel.send({embed: Embed});
|
channel.send({embed: Embed});
|
||||||
|
|
||||||
return message.channel.send(`Go see ur epic tweet https://twitter.com/HahaYesDB/status/${tweetid}`);
|
return message.channel.send(`Go see ur epic tweet https://twitter.com/i/status/${tweetid}`);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue