Эх сурвалжийг харах

Distinguish between no results and loading when sorting global search results

arkon 4 жил өмнө
parent
commit
2be9871d05

+ 2 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/browse/source/globalsearch/GlobalSearchPresenter.kt

@@ -185,7 +185,8 @@ open class GlobalSearchPresenter(
                     .sortedWith(
                         compareBy(
                             // Bubble up sources that actually have results
-                            { it.results.isNullOrEmpty() },
+                            { it.results?.isEmpty() },
+                            { it.results == null },
                             // Same as initial sort, i.e. pinned first then alphabetically
                             { it.source.id.toString() !in pinnedSourceIds },
                             { "${it.source.name.toLowerCase()} (${it.source.lang})" }