Fix a crash when updating active category and no categories available
Cette révision appartient à :
Parent
e73eed4a9b
révision
8f144316a6
1 fichiers modifiés avec 3 ajouts et 2 suppressions
|
@ -204,8 +204,9 @@ class LibraryFragment : BaseRxFragment<LibraryPresenter>(), ActionMode.Callback
|
|||
LibraryUpdateService.start(activity, true)
|
||||
}
|
||||
R.id.action_update_category -> {
|
||||
val category = presenter.categories[view_pager.currentItem]
|
||||
LibraryUpdateService.start(activity, true, category)
|
||||
presenter.categories.getOrNull(view_pager.currentItem)?.let {
|
||||
LibraryUpdateService.start(activity, true, it)
|
||||
}
|
||||
}
|
||||
R.id.action_edit_categories -> {
|
||||
val intent = CategoryActivity.newIntent(activity)
|
||||
|
|
Référencer dans un nouveau ticket