mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-04-04 05:21:11 +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>) {
|
||||
if (context == null) {
|
||||
return
|
||||
}
|
||||
|
||||
val newEvents = context!!.getFilteredEvents(events)
|
||||
val newHash = newEvents.hashCode()
|
||||
if (newHash == lastHash) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user