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.

tagcache: skip search roots that don't exist, instead of aborting

https://forums.rockbox.org/index.php/topic,55459

Change-Id: I0c3fa07f9920ed4caabf3013702b10e59c0b550e

+8 -1
+8 -1
apps/tagcache.c
··· 5075 5075 { 5076 5076 logf("Search root %s", this->path); 5077 5077 strmemccpy(curpath, this->path, sizeof(curpath)); 5078 - ret = ret && check_dir(this->path, true); 5078 + 5079 + if (ret) 5080 + { 5081 + if (dir_exists(this->path)) 5082 + ret = check_dir(this->path, true); 5083 + else 5084 + logf("Dir not found %s", this->path); 5085 + } 5079 5086 } 5080 5087 free_search_roots(&roots_ll[0]); 5081 5088