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: scope storage name double slash

+4 -3
+4 -3
src/components/engine/scope/element.js
··· 44 44 45 45 // Signals 46 46 const storagePrefix = 47 - `${this.constructor.prototype.constructor.NAME}/${this.group}/`; 47 + `${this.constructor.prototype.constructor.NAME}/${this.group}`; 48 48 49 49 this.#playlist.value = 50 50 localStorage.getItem(`${storagePrefix}/playlistId`) ?? undefined; 51 51 this.#searchTerm.value = 52 52 localStorage.getItem(`${storagePrefix}/searchTerm`) ?? undefined; 53 - this.#sortBy.value = 54 - JSON.parse(localStorage.getItem(`${storagePrefix}/sortBy`) ?? "[]"); 53 + this.#sortBy.value = JSON.parse( 54 + localStorage.getItem(`${storagePrefix}/sortBy`) ?? "[]", 55 + ); 55 56 56 57 // Effects 57 58 this.effect(() => {