Skip to content

Commit

Permalink
[Discord] Fix assignment in AudioPlayerView.interaction_check method
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Dec 1, 2023
1 parent ee8ccd7 commit 7f4a356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Discord/cogs/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -1495,7 +1495,7 @@ async def interaction_check(self, interaction):
custom_id == "pause" and
not self.ctx.guild.voice_client.is_playing()
):
custom_id == "resume"
custom_id = "resume"

command = getattr(self.ctx.bot.cogs["Audio"], custom_id)
while (
Expand Down

0 comments on commit 7f4a356

Please sign in to comment.