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.

Grouping by first alpha char should case-insensitive

+1 -1
+1 -1
src/Library/Tracks/Collection/Internal/Arrange.elm
··· 197 197 |> Maybe.andThen 198 198 (\char -> 199 199 if Char.isAlpha char then 200 - Just (String.fromList [ char ]) 200 + Just (String.fromList [ Char.toUpper char ]) 201 201 202 202 else 203 203 Nothing