catch exceptions thrown at updating monthly calendar
This commit is contained in:
parent
c9a342f516
commit
2199c4eb37
|
@ -216,9 +216,12 @@ class MyWidgetMonthlyProvider : AppWidgetProvider(), MonthlyCalendar {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun updateMonthlyCalendar(month: String, days: List<Day>) {
|
override fun updateMonthlyCalendar(month: String, days: List<Day>) {
|
||||||
updateMonth(month)
|
try {
|
||||||
updateDays(days)
|
updateMonth(month)
|
||||||
updateWidget()
|
updateDays(days)
|
||||||
|
updateWidget()
|
||||||
|
} catch (ignored: Exception) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateLabelColor() {
|
private fun updateLabelColor() {
|
||||||
|
|
Loading…
Reference in New Issue