adding a crashfix
This commit is contained in:
parent
da4742e7b5
commit
712cafbee8
|
@ -52,7 +52,7 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.simplemobiletools:commons:5.6.16'
|
||||
implementation 'com.simplemobiletools:commons:5.6.17'
|
||||
implementation 'joda-time:joda-time:2.10.1'
|
||||
implementation 'androidx.multidex:multidex:2.0.1'
|
||||
|
||||
|
|
|
@ -102,6 +102,10 @@ class EventListFragment : MyFragmentHolder(), RefreshRecyclerViewListener {
|
|||
val listItems = context!!.getEventListItems(mEvents)
|
||||
|
||||
activity?.runOnUiThread {
|
||||
if (activity == null) {
|
||||
return@runOnUiThread
|
||||
}
|
||||
|
||||
val currAdapter = mView.calendar_events_list.adapter
|
||||
if (currAdapter == null || forceRecreation) {
|
||||
EventListAdapter(activity as SimpleActivity, listItems, true, this, mView.calendar_events_list) {
|
||||
|
|
Loading…
Reference in New Issue