Continue processing Song even when no tracks are found (#7458)

This commit is contained in:
saker
2024-08-20 14:32:46 -04:00
committed by GitHub
parent 88ee83bb4a
commit ff8c47062f

View File

@@ -235,9 +235,6 @@ void Song::processNextBuffer()
return;
}
// If we have no tracks to play, there is nothing to do
if (trackList.empty()) { return; }
// If the playback position is outside of the range [begin, end), move it to
// begin and inform interested parties.
// Returns true if the playback position was moved, else false.