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.

[BugFix] Hosted incoming directory component leading slashes #2

Fix the rest..

Change-Id: Ie551772a073cba3eb6de176cd73a59d419057183

+1 -1
+1 -1
firmware/target/hosted/filesystem-app.c
··· 168 168 const char *pos = path; 169 169 /* replace ROCKBOX_DIR in path with $HOME/.config/rockbox.org */ 170 170 pos += ROCKBOX_DIR_LEN; 171 - if (*pos == '/') pos += 1; 171 + while (*pos == PATH_SEPCH) pos++; 172 172 173 173 #if (CONFIG_PLATFORM & PLATFORM_ANDROID) 174 174 if (path_append(buf, "/sdcard/rockbox", pos, bufsize) >= bufsize)