A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Quality control 🧹

-12
-1
elm.json
··· 16 16 "TSFoster/elm-tuple-extra": "2.0.0", 17 17 "arturopala/elm-monocle": "2.2.0", 18 18 "avh4/elm-color": "1.0.0", 19 - "danyx23/elm-uuid": "2.1.2", 20 19 "elm/browser": "1.0.2", 21 20 "elm/core": "1.0.5", 22 21 "elm/file": "1.0.5",
-1
src/Applications/UI/Authentication/State.elm
··· 28 28 import UI.Backdrop as Backdrop 29 29 import UI.Common.State as Common exposing (showNotification, showNotificationWithModel) 30 30 import UI.Ports as Ports 31 - import UI.Routing.State as Routing 32 31 import UI.Sources.Query 33 32 import UI.Sources.State as Sources 34 33 import UI.Types as UI exposing (..)
-10
src/Library/Http/Ext.elm
··· 1 1 module Http.Ext exposing (errorToString) 2 2 3 3 import Http exposing (Error(..)) 4 - import Json.Decode as Json 5 4 6 5 7 6 ··· 26 25 27 26 BadUrl url -> 28 27 "Malformed url: " ++ url 29 - 30 - 31 - 32 - -- ㊙️ 33 - 34 - 35 - parseError : String -> Maybe String 36 - parseError = 37 - Json.decodeString (Json.field "error" Json.string) >> Result.toMaybe