From 001fc52ec87bf04b5fb5a262d310738e5dd3682a Mon Sep 17 00:00:00 2001 From: ailurux Date: Fri, 31 Jan 2025 12:24:35 +1100 Subject: [PATCH] Fix playlists not setting the queue to ready --- src/tangara/audio/track_queue.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tangara/audio/track_queue.cpp b/src/tangara/audio/track_queue.cpp index c54be11f..90d01992 100644 --- a/src/tangara/audio/track_queue.cpp +++ b/src/tangara/audio/track_queue.cpp @@ -181,6 +181,7 @@ auto TrackQueue::openPlaylist(const std::string& playlist_file, bool notify) if (!res) { return false; } + ready_ = true; updateShuffler(true); if (notify) { notifyChanged(true, Reason::kExplicitUpdate);