Fix a crash when updating active category and no categories available

This commit is contained in:
len 2016-05-06 15:44:01 +02:00
parent e73eed4a9b
commit 8f144316a6

View File

@ -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)