Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
fix: Handle youtube graphic or violent imagery warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusbegby committed Jul 23, 2023
1 parent 703bfd5 commit cef6b7f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/commands/player/play.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,18 @@ module.exports = {
});
}

if (error.message.includes('The following content may contain graphic or violent imagery')) {
return await interaction.editReply({
embeds: [
new EmbedBuilder()
.setDescription(
`**${embedOptions.icons.warning} Cannot retrieve audio for track**\nThis audio source cannot be played as the video source has a warning for graphic or violent imagery. It requires a manual confirmation to to play the video, and because of this I am unable to extract the audio for this source.\n\n_If you think this message is incorrect, please submit a bug report in the **[support server](${botOptions.serverInviteUrl})**._`
)
.setColor(embedOptions.colors.warning)
]
});
}

if (
(error.type === 'TypeError' &&
(error.message.includes('Cannot read properties of null (reading \'createStream\')') ||
Expand Down

0 comments on commit cef6b7f

Please sign in to comment.