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.

Don't forget about old IPFS sources

+8 -1
+8 -1
src/Library/Sources/Services/Ipfs.elm
··· 249 249 -} 250 250 makeTrackUrl : Time.Posix -> SourceData -> HttpMethod -> String -> String 251 251 makeTrackUrl _ srcData _ path = 252 - extractGateway srcData ++ "/ipfs/" ++ rootHash srcData ++ "/" ++ encodedPath path 252 + if not (String.contains "/" path) && not (String.contains "." path) then 253 + -- If it still uses the old way of doing things 254 + -- (ie. each path was a cid) 255 + extractGateway srcData ++ "/ipfs/" ++ path 256 + 257 + else 258 + -- Or the new way 259 + extractGateway srcData ++ "/ipfs/" ++ rootHash srcData ++ "/" ++ encodedPath path 253 260 254 261 255 262