🐛 Track change announcement after play

This commit is contained in:
Manuel 2023-03-14 21:03:47 +01:00
parent 99cbbf4850
commit 9104e52de4

View File

@ -91,7 +91,7 @@ export class Playlist {
const length = this.tracks.push(...tracks);
// emit a track change if there is no item
if (!this.activeTrackIndex) {
if (this.activeTrackIndex === undefined) {
this.announceTrackChange();
}