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: still allow webamp to load local files

+4
+4
src/themes/webamp/index.js
··· 66 66 * @param {boolean} autoPlay 67 67 */ 68 68 async function loadOverride(uri, autoPlay) { 69 + if (uri.startsWith("blob:")) { 70 + return await loadFromUrl(uri, autoPlay); 71 + } 72 + 69 73 const resp = await input.resolve({ method: "GET", uri }); 70 74 if (!resp) throw new Error("Failed to resolve URI"); 71 75 if (resp && "stream" in resp) {