Compare commits

...

2 Commits

Author SHA1 Message Date
minish b1fb1211f4
try fix nowplaying duration pt2
Build Docker images / push-image (push) Failing after 2m32s Details
2023-09-27 19:27:12 -04:00
minish 644557d683
try fix nowplaying duration 2023-09-27 19:27:03 -04:00
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ client.on('messageCreate', message => {
if (!checkQueue(message)) return;
let queue = distube.getQueue(message);
let song = queue.songs[0];
message.channel.send(`Currently playing \`${song.name}\`\nDuration: \`${queue.formattedCurrentTime}\` / \`${queue.formattedDuration}\``);
message.channel.send(`Currently playing \`${song.name}\`\nDuration: \`${queue.formattedCurrentTime}\` / \`${song.formattedDuration}\``);
}
if (['seek', 'jump', 'j'].includes(command)) {