mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-04-05 05:51:03 +02:00
make sure the context isnt null at updating the weekly fragment
This commit is contained in:
parent
d0aa871a43
commit
a92db0efdb
@ -220,6 +220,10 @@ class WeekFragment : Fragment(), WeeklyCalendar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun updateWeeklyCalendar(events: ArrayList<Event>) {
|
override fun updateWeeklyCalendar(events: ArrayList<Event>) {
|
||||||
|
if (context == null) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
val newEvents = context!!.getFilteredEvents(events)
|
val newEvents = context!!.getFilteredEvents(events)
|
||||||
val newHash = newEvents.hashCode()
|
val newHash = newEvents.hashCode()
|
||||||
if (newHash == lastHash) {
|
if (newHash == lastHash) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user