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

fix: artwork progress bar flash

+1 -2
+1 -2
src/themes/blur/artwork-controller/element.js
··· 480 480 <!-- PROGRESS --> 481 481 482 482 <div class="progress" @click="${this.seek}"> 483 - <progress max="100" value="${(this.audio()?.progress() ?? 484 - 0) * 100}"></progress> 483 + <progress max="100" value="${(this.audio()?.loadingState() === "loaded" ? (this.audio()?.progress() ?? 0) : 0) * 100}"></progress> 485 484 <div class="timestamps"> 486 485 <time datetime="${this.#time.value}">${this.#time.value}</time> 487 486 <time datetime="${this.#time.value}">${this.#duration