Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Playlist Viewer: Fix dir not updated after playlist removal

Missed this in 6a865f2430

If you entered the Playlist Viewer using the
context menu option "View", instead of from
the Playlist Catalogue, a playlist file that was
deleted due to the removal of all of its tracks
would still be displayed in the directory when
returning

Change-Id: I54ca34f70344e289d9e2cb413ee2a38e5bd7a92b

+3
+3
apps/playlist_viewer.c
··· 647 647 save_playlist_screen(viewer.playlist); 648 648 else if (!viewer.num_tracks && 649 649 confirm_delete_yesno(viewer.playlist->filename) == YESNO_YES) 650 + { 650 651 remove(viewer.playlist->filename); 652 + reload_directory(); 653 + } 651 654 } 652 655 playlist_close(viewer.playlist); 653 656 }