Skip to content

Commit

Permalink
added progress bar to save button from controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateo-Wallace committed Mar 5, 2023
1 parent 136bf94 commit fe7f65a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils/buttons/savetrack.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ module.exports = async ({ inter, queue }) => {
value: `\`${Number(queue.current.views).toLocaleString()}\``,
inline: true,
},
{ name: "Song URL:", value: `\`${queue.current.url}\`` }
{ name: "Song URL:", value: `\`${queue.current.url}\`` },
{ name: "Progress ", value: `${queue.createProgressBar()}` }
)
.setThumbnail(queue.current.thumbnail)
.setFooter({
Expand Down

0 comments on commit fe7f65a

Please sign in to comment.