Don't error when no args

slash
Supositware 2 years ago
parent e6438e2117
commit 511111cf59

@ -28,6 +28,10 @@ export default {
ratelimit: 3,
cooldown: 3600,
async execute(interaction) {
if (!interaction.options.getString('content') && !interaction.options.getAttachment('image')) {
return interaction.reply({ content: 'Uh oh! You are missing any content for me to tweet!', ephemeral: true });
}
await interaction.deferReply({ ephemeral: false });
let tweet = interaction.options.getString('content');
const attachment = interaction.options.getAttachment('image');

Loading…
Cancel
Save