bug: play now
probably not working with playlist #192
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: ConfrerieDuKassoulait/Botanique#192
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
if (result.playlist) {
queue.addTrack(result.playlist.tracks);
title = result.playlist.title;
} else {
const track = result.tracks[0];
if (
interaction.options.getSubcommand() ===
loc_default?.get(`c_${filename}_sub2_name`)?.toLowerCase()
) {
queue.insertTrack(track, 0);
} else {
queue.addTrack(track);
}
It just add the playlist at the end (first if-true), so
play add
andplay now
have the same behaviour on playlist