Ignore case while sorting Library (#2048)

* Ignore case while sorting Library

* Simplify code

As suggested by @arkon
This commit is contained in:
Harsh Parekh 2019-05-24 03:57:05 -04:00 committed by inorichi
parent be3ed9b6af
commit a32572fc96

View File

@ -185,7 +185,7 @@ class LibraryPresenter(
val sortFn: (LibraryItem, LibraryItem) -> Int = { i1, i2 ->
when (sortingMode) {
LibrarySort.ALPHA -> i1.manga.title.compareTo(i2.manga.title)
LibrarySort.ALPHA -> i1.manga.title.compareTo(i2.manga.title, true)
LibrarySort.LAST_READ -> {
// Get index of manga, set equal to list if size unknown.
val manga1LastRead = lastReadManga[i1.manga.id!!] ?: lastReadManga.size