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.

Fix fast_readline to handle windows line endings (\r\n)

Change-Id: I3561eff9bc4e244a84ef4afee26a40432d1073dd

+7
+7
apps/misc.c
··· 198 198 next = ++p; 199 199 } 200 200 201 + if ( (p = strchr(buf, '\r')) != NULL) 202 + { 203 + *p = '\0'; 204 + if (!next) 205 + next = ++p; 206 + } 207 + 201 208 rc = callback(count, buf, parameters); 202 209 if (rc < 0) 203 210 return rc;