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.

Housekeeping 🧹

+3 -4
+1 -1
src/Javascript/Brain/artwork.js
··· 10 10 const REJECT = () => Promise.reject("No artwork found") 11 11 12 12 13 - export function find(prep, app) { 13 + export function find(prep, _app) { 14 14 return findUsingTags(prep) 15 15 .then(a => a ? a : findUsingMusicBrainz(prep)) 16 16 .then(a => a ? a : findUsingLastFm(prep))
+2 -2
src/Javascript/index.js
··· 434 434 // --------- 435 435 436 436 wire.clipboard = () => { 437 - app.ports.copyToClipboard.subscribe(text => { 437 + app.ports.copyToClipboard.subscribe(async text => { 438 438 // TODO: Find a better solution for this 439 439 const adjustedText = (() => { 440 440 if (text.startsWith("dropbox://")) { ··· 447 447 } 448 448 })() 449 449 450 - copyToClipboard(copyToClipboard) 450 + copyToClipboard(await adjustedText) 451 451 }) 452 452 } 453 453
-1
src/Library/Sources/Services/Google.elm
··· 17 17 import Sources.Services.Google.Parser as Parser 18 18 import String.Path 19 19 import Time 20 - import Url 21 20 22 21 23 22