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.

Remove playlist fix

+8 -1
+8 -1
src/Applications/UI/Playlists.elm
··· 170 170 171 171 RemoveFromCollection { playlistName } -> 172 172 model.collection 173 - |> List.filter (.name >> (/=) playlistName) 173 + |> List.filter 174 + (\p -> 175 + if p.autoGenerated then 176 + True 177 + 178 + else 179 + p.name /= playlistName 180 + ) 174 181 |> (\col -> { model | collection = col }) 175 182 |> return 176 183 |> addReply SavePlaylists