music.queue: actually show 9

This commit is contained in:
Cynthia Foxwell 2022-04-24 11:43:21 -06:00
parent a3f32a8954
commit c118a66858
1 changed files with 1 additions and 1 deletions

View File

@ -609,7 +609,7 @@ command.callback = async function (msg, line) {
const now = Date.now();
let nextTrack = now + (nowPlaying.length - (now - nowPlaying.start));
const fields = [];
for (const index in queue.slice(0, 8)) {
for (const index in queue.slice(0, 9)) {
const item = queue[index];
fields.push({
name: item.title ?? item.url,