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

Configure Feed

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

Fix: Root dir bookmarks displayed for dynamic playlist

When the 'List bookmarks' button or hotkey was
pressed, while a dynamic playlist was playing,
bookmarks from the root dir were displayed, if
any existed.

Change-Id: If104ad4b717fd188174069457deb27d21399b9bb

+9
+9
apps/bookmark.c
··· 1187 1187 char* bookmark; 1188 1188 int ret = BOOKMARK_FAIL; 1189 1189 1190 + /* To prevent root dir ("/") bookmarks from being displayed 1191 + when 'List Bookmarks' hotkey or button is pressed, check: 1192 + */ 1193 + if (playlist_dynamic_only()) 1194 + { 1195 + splash(HZ, ID2P(LANG_BOOKMARK_LOAD_EMPTY)); 1196 + return ret; 1197 + } 1198 + 1190 1199 push_current_activity(ACTIVITY_BOOKMARKSLIST); 1191 1200 1192 1201 char* name = playlist_get_name(NULL, global_temp_buffer,