Fix first element of queue list #88

Merged
Anri merged 5 commits from fix-85 into main 2023-03-18 19:42:29 +01:00

View file

@ -25,8 +25,9 @@ export const embedListQueue = (
embed.setFooter({ text: `${printRepeatMode(queue.repeatMode, loc)}` });
tracks.slice((page - 1) * limit_fields, page * limit_fields).forEach((t, idx) => {
const name = idx == 0 ? loc.get("c_queue10") : idx == 1 ? loc.get("c_queue11") : "\u200b";
const idx_track = idx == 0 ? "" : `${idx + limit_fields * (page - 1)}. `;
const now_playing = idx == 0 && page == 1;
const name = now_playing ? loc.get("c_queue10") : idx == 1 ? loc.get("c_queue11") : "\u200b";
const idx_track = now_playing ? "" : `${idx + limit_fields * (page - 1)}. `;
embed.addFields({
name,
value: `${idx_track}[${t.title}${t.author}](${t.url}) (${t.duration})`,