Fix library settings sheet causing app to crash... (#5354)

...when the category list is empty
pull/5379/head
jmir1 3 years ago committed by GitHub
parent d961492380
commit 8791b72cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -262,9 +262,13 @@ class LibraryController(
}
fun showSettingsSheet() {
if (adapter?.categories?.isNotEmpty() == true) {
adapter?.categories?.get(binding.libraryPager.currentItem)?.let { category ->
settingsSheet?.show(category)
}
} else {
settingsSheet?.show()
}
}
fun onNextLibraryUpdate(categories: List<Category>, mangaMap: Map<Int, List<LibraryItem>>) {

Loading…
Cancel
Save