diff options
| author | ailurux <ailuruxx@gmail.com> | 2025-01-31 12:24:35 +1100 |
|---|---|---|
| committer | ailurux <ailuruxx@gmail.com> | 2025-01-31 12:24:35 +1100 |
| commit | 001fc52ec87bf04b5fb5a262d310738e5dd3682a (patch) | |
| tree | d43de36fa612a5f5a31ea6e2e3f4b336c3ce448d /src/tangara | |
| parent | b4b43ca3eb011b0b69db39821ac310229e1b37ad (diff) | |
| download | tangara-fw-001fc52ec87bf04b5fb5a262d310738e5dd3682a.tar.gz | |
Fix playlists not setting the queue to ready
Diffstat (limited to 'src/tangara')
| -rw-r--r-- | src/tangara/audio/track_queue.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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); |
