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.

Case insensitive sorting for playlists

+11 -2
+11 -2
src/Applications/UI/Playlists/View.elm
··· 63 63 customPlaylists = 64 64 playlists 65 65 |> List.filterNot .autoGenerated 66 - |> List.sortBy .name 66 + |> List.sortBy lowercaseName 67 67 68 68 customPlaylistListItem playlist = 69 69 if selectedPlaylistName == Just playlist.name then ··· 105 105 directoryPlaylists = 106 106 playlists 107 107 |> List.filter .autoGenerated 108 - |> List.sortBy .name 108 + |> List.sortBy lowercaseName 109 109 110 110 directoryPlaylistListItem playlist = 111 111 if selectedPlaylistName == Just playlist.name then ··· 381 381 , C.text_center 382 382 ] 383 383 ] 384 + 385 + 386 + 387 + -- 🛠 388 + 389 + 390 + lowercaseName : Playlist -> String 391 + lowercaseName = 392 + .name >> String.toLower