A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

Accept FS #7627: allow viewing of dynamic playlist when it has ended

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14456 a1c6a512-1295-4272-9138-f99709370657

+6
+6
apps/playlist_viewer.c
··· 281 281 /* Try to restore the list from control file */ 282 282 have_list = (playlist_resume() != -1); 283 283 } 284 + if (!have_list && (playlist_amount() > 0)) 285 + { 286 + /*If dynamic playlist still exists, view it anyway even 287 + if playback has reached the end of the playlist */ 288 + have_list = true; 289 + } 284 290 if (!have_list) 285 291 { 286 292 /* Nothing to view, exit */