diff --git a/app/src/main/kotlin/org/koitharu/kotatsu/explore/data/MangaSourcesRepository.kt b/app/src/main/kotlin/org/koitharu/kotatsu/explore/data/MangaSourcesRepository.kt index 5b683fdf0..752cf1876 100644 --- a/app/src/main/kotlin/org/koitharu/kotatsu/explore/data/MangaSourcesRepository.kt +++ b/app/src/main/kotlin/org/koitharu/kotatsu/explore/data/MangaSourcesRepository.kt @@ -314,7 +314,7 @@ class MangaSourcesRepository @Inject constructor( } } if (sortOrder == SourcesSortOrder.ALPHABETIC) { - result.sortWith(compareBy { it.isPinned }.thenBy { it.getTitle(context) }) + result.sortWith(compareBy { !it.isPinned }.thenBy { it.getTitle(context) }) } return result }