From ff8c47062f4480a6252b09cd4b1075780d5e5678 Mon Sep 17 00:00:00 2001 From: saker Date: Tue, 20 Aug 2024 14:32:46 -0400 Subject: [PATCH] Continue processing `Song` even when no tracks are found (#7458) --- src/core/Song.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/Song.cpp b/src/core/Song.cpp index 92cb2ba3051..e4f31c622c3 100644 --- a/src/core/Song.cpp +++ b/src/core/Song.cpp @@ -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.