A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

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

fix: opensubsonic path check

+1 -1
+1 -1
src/components/input/opensubsonic/worker.js
··· 103 103 104 104 cachedTracks.forEach((t) => { 105 105 const parsed = parseURI(t.uri); 106 - if (!parsed || !parsed.path) return; 106 + if (!parsed || parsed.path === undefined) return; 107 107 108 108 const sid = serverId(parsed.server); 109 109 servers[sid] = parsed.server;