Fix error when there is no quality option for the video
This commit is contained in:
parent
d8877229f2
commit
7ecbe09573
1 changed files with 5 additions and 0 deletions
|
@ -62,6 +62,11 @@ export default {
|
|||
options.reverse();
|
||||
}
|
||||
|
||||
if (options.length < 2) {
|
||||
await interaction.deleteReply();
|
||||
return interaction.followUp({ content: '❌ There is no other quality option for this video!', ephemeral: true });
|
||||
}
|
||||
|
||||
const row = new MessageActionRow()
|
||||
.addComponents(
|
||||
new MessageSelectMenu()
|
||||
|
|
Loading…
Reference in a new issue