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.

Fix webdav issue

+2 -2
+1 -1
src/Library/Sources/Services.elm
··· 360 360 , ( typeToKey Dropbox, "Dropbox" ) 361 361 , ( typeToKey Google, "Google Drive" ) 362 362 , ( typeToKey Ipfs, "IPFS" ) 363 - , ( typeToKey WebDav, "WebDAV (Experimental)" ) 363 + , ( typeToKey WebDav, "WebDAV" ) 364 364 ]
+1 -1
src/Library/Sources/Services/WebDav.elm
··· 199 199 200 200 authBit = 201 201 if addAuth && String.length authPrefix > 0 then 202 - "?service_worker_authentication=" ++ Base64.encode authPrefix 202 + "?service_worker_authentication=" ++ Url.percentEncode (Base64.encode authPrefix) 203 203 204 204 else 205 205 ""