aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/services/player.ts19
1 files changed, 3 insertions, 16 deletions
diff --git a/src/services/player.ts b/src/services/player.ts
index 9faef18..0446fa8 100644
--- a/src/services/player.ts
+++ b/src/services/player.ts
@@ -241,25 +241,12 @@ export default class {
}
add(song: QueuedSong, {immediate = false} = {}): void {
- if (song.playlist) {
+ if (song.playlist || !immediate) {
// Add to end of queue
this.queue.push(song);
} else {
- // Not from playlist, add immediately
- let insertAt = this.queuePosition + 1;
-
- if (!immediate) {
- // Loop until playlist song
- this.queue.some(song => {
- if (song.playlist) {
- return true;
- }
-
- insertAt++;
- return false;
- });
- }
-
+ // Add as the next song to be played
+ const insertAt = this.queuePosition + 1;
this.queue = [...this.queue.slice(0, insertAt), song, ...this.queue.slice(insertAt)];
}
}