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 #247

+3 -3
+3 -3
src/Library/Sources/Services/Ipfs.elm
··· 103 103 in 104 104 if isDnsLink srcData then 105 105 (Just << Http.request) 106 - { method = "GET" 106 + { method = "POST" 107 107 , headers = [] 108 108 , url = extractGateway srcData ++ "/api/v0/dns?arg=" ++ domainName 109 109 , body = Http.emptyBody ··· 160 160 in 161 161 (if resolveWithIpns then 162 162 Http.task 163 - { method = "GET" 163 + { method = "POST" 164 164 , headers = [] 165 165 , url = gateway ++ "/api/v0/name/resolve?arg=" ++ encodedPath path ++ "&local=" ++ resolveLocally ++ "&encoding=json" 166 166 , body = Http.emptyBody ··· 174 174 |> Task.andThen 175 175 (\{ ipfsPath } -> 176 176 Http.task 177 - { method = "GET" 177 + { method = "POST" 178 178 , headers = [] 179 179 , url = gateway ++ "/api/v0/ls?arg=" ++ encodedPath ipfsPath ++ "&encoding=json" 180 180 , body = Http.emptyBody