music.queue: actually show 9
This commit is contained in:
parent
a3f32a8954
commit
c118a66858
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue