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

Configure Feed

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

fix: perf issue with artwork signal

+3 -1
+3 -1
src/themes/blur/artwork-controller/element.js
··· 46 46 47 47 // SIGNALS 48 48 49 - #artwork = signal(/** @type {Artwork[]} */ ([])); 49 + #artwork = signal(/** @type {Artwork[]} */ ([]), { eager: true }); 50 50 #artworkColor = signal(/** @type {string | undefined} */ (undefined)); 51 51 #artworkLightMode = signal(false); 52 52 #duration = signal("0:00"); ··· 150 150 * @param {Track | null} track 151 151 */ 152 152 async #setArtwork(track) { 153 + console.log("SET", track); 154 + 153 155 if (!track) { 154 156 this.#artwork.value = []; 155 157 return;