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.

Fixes #207

+2
+2
src/Library/Tracks/Collection/Internal/Arrange.elm
··· 6 6 import Maybe.Extra as Maybe 7 7 import Playlists exposing (..) 8 8 import Playlists.Matching 9 + import String.Ext as String 9 10 import Time 10 11 import Time.Ext as Time 11 12 import Tracks exposing (..) ··· 144 145 directory = 145 146 t.path 146 147 |> String.dropLeft (String.length prefix) 148 + |> String.chopStart "/" 147 149 |> String.split "/" 148 150 |> List.init 149 151 |> Maybe.map (String.join " / ")