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

...when the category list is empty
This commit is contained in:
jmir1 2021-06-09 23:15:48 +02:00 committed by GitHub
parent d961492380
commit 8791b72cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -262,8 +262,12 @@ class LibraryController(
}
fun showSettingsSheet() {
adapter?.categories?.get(binding.libraryPager.currentItem)?.let { category ->
settingsSheet?.show(category)
if (adapter?.categories?.isNotEmpty() == true) {
adapter?.categories?.get(binding.libraryPager.currentItem)?.let { category ->
settingsSheet?.show(category)
}
} else {
settingsSheet?.show()
}
}