Skip to content

Commit

Permalink
added artist to now playing
Browse files Browse the repository at this point in the history
Signed-off-by: zebz213 <[email protected]>
  • Loading branch information
zebz213 authored Oct 23, 2022
1 parent 042438c commit 9522477
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function neb(embed, player, client) {
return embed
.setDescription(
`[${player.queue.current.title}](${player.queue.current.uri
}) • \`[${convertTime(player.queue.current.duration)}]\``
}) by ${player.queue.current.author} • \`[${convertTime(player.queue.current.duration)}]\``
)
.setImage(icon)
.setFooter({
Expand Down Expand Up @@ -277,7 +277,7 @@ async function trackStartEventHandler(msgId, channel, player, track, client) {
let embed1 = new EmbedBuilder()
.setColor(client.embedColor)
.setDescription(
`[${track.title}](${track.uri}) - \`[${convertTime(
`[${track.title}](${track.uri}) by ${track.author} - \`[${convertTime(
track.duration
)}]\``
)
Expand Down Expand Up @@ -340,7 +340,7 @@ async function trackStartEventHandler(msgId, channel, player, track, client) {
.setColor(message.client.embedColor)
.setDescription(
`${emojiplay} **Started Playing** - [${track.title}](${track.uri
}) - \`[${convertTime(track.duration)}]\``
}) by ${track.author} - \`[${convertTime(track.duration)}]\``
)
.setImage(icon)
.setFooter({
Expand Down

0 comments on commit 9522477

Please sign in to comment.