Fix crash when deleting last item in library (#6079)

This commit is contained in:
jmir1 2021-10-11 16:17:01 +02:00 committed by GitHub
parent aae011ed83
commit 3448751e0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,9 +139,9 @@ class LibraryAdapter(
}
override fun getViewType(position: Int): Int {
val category = categories[position]
return if (isPerCategory && category.id != 0) {
if (DisplayModeSetting.fromFlag(category.displayMode) == DisplayModeSetting.LIST) {
val category = categories.getOrNull(position)
return if (isPerCategory && category?.id != 0) {
if (DisplayModeSetting.fromFlag(category?.displayMode) == DisplayModeSetting.LIST) {
LIST_DISPLAY_MODE
} else {
GRID_DISPLAY_MODE