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.

Closes #368

+6 -3
+6 -3
src/Javascript/Brain/index.ts
··· 108 108 109 109 110 110 function downloadArtwork(list) { 111 - const exe = !artworkQueue[0] 111 + const exe = !artworkQueue[ 0 ] 112 112 artworkQueue = artworkQueue.concat(list) 113 113 if (exe) shiftArtworkQueue() 114 114 } ··· 153 153 reportError(app, { tag: "REPORT_ERROR" })(err) 154 154 155 155 } 156 + }) 157 + .catch(() => { 158 + console.warn("Failed to download artwork for ", prep) 156 159 }) 157 160 .finally(shiftArtworkQueue) 158 161 } ··· 297 300 .substr(1) 298 301 .split("&") 299 302 .reduce((acc, flag) => { 300 - const [k, v] = flag.split("=") 301 - return { ...acc, [k]: v } 303 + const [ k, v ] = flag.split("=") 304 + return { ...acc, [ k ]: v } 302 305 }, {}) 303 306 304 307