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 item detection for album cover

+1 -1
+1 -1
src/Javascript/index.js
··· 424 424 function gotCachedCover({ key, url }) { 425 425 const item = orchestrion.activeQueueItem 426 426 427 - if (key === orchestrion.coverPrep.key && item) { 427 + if (item && key === orchestrion.coverPrep.key) { 428 428 navigator.mediaSession.metadata = new MediaMetadata({ 429 429 title: item.trackTags.title, 430 430 artist: item.trackTags.artist,