make sure the context isnt null at updating the weekly fragment

This commit is contained in:
tibbi 2018-06-12 14:22:03 +02:00
parent d0aa871a43
commit a92db0efdb

View File

@ -220,6 +220,10 @@ class WeekFragment : Fragment(), WeeklyCalendar {
}
override fun updateWeeklyCalendar(events: ArrayList<Event>) {
if (context == null) {
return
}
val newEvents = context!!.getFilteredEvents(events)
val newHash = newEvents.hashCode()
if (newHash == lastHash) {