Skip to content

Commit

Permalink
Remove # from brackets since discord autoomatically parses the channel
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Oct 11, 2021
1 parent e5ad9f0 commit 9983b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/Music/stop.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {
embeds: [
embedMessage(
"#9dcc37",
`✅ Stopped **${queue.current.title}** in [<#${message.member.voice.channel}>]`
`✅ Stopped **${queue.current.title}** in [${message.member.voice.channel}]`
),
],
});
Expand Down Expand Up @@ -64,7 +64,7 @@ module.exports = {
embeds: [
embedMessage(
"#9dcc37",
`✅ Stopped **${queue.current.title}** in [<#${interaction.member.voice.channelId}>]`
`✅ Stopped **${queue.current.title}** in [${interaction.member.voice.channel}]`
),
],
});
Expand Down

0 comments on commit 9983b84

Please sign in to comment.