update event types filter when events are imported (from ics, holidays birthdays and anniversaries)

This commit is contained in:
Paul Akhamiogu 2021-08-22 22:08:46 +01:00
parent ce4d094e3b
commit e441fb5324
1 changed files with 4 additions and 0 deletions

View File

@ -515,6 +515,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
if (result != ImportResult.IMPORT_FAIL) { if (result != ImportResult.IMPORT_FAIL) {
runOnUiThread { runOnUiThread {
updateViewPager() updateViewPager()
setupQuickFilter()
} }
} }
} }
@ -536,6 +537,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
it > 0 -> { it > 0 -> {
toast(R.string.birthdays_added) toast(R.string.birthdays_added)
updateViewPager() updateViewPager()
setupQuickFilter()
} }
it == -1 -> toast(R.string.no_new_birthdays) it == -1 -> toast(R.string.no_new_birthdays)
else -> toast(R.string.no_birthdays) else -> toast(R.string.no_birthdays)
@ -565,6 +567,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
it > 0 -> { it > 0 -> {
toast(R.string.anniversaries_added) toast(R.string.anniversaries_added)
updateViewPager() updateViewPager()
setupQuickFilter()
} }
it == -1 -> toast(R.string.no_new_anniversaries) it == -1 -> toast(R.string.no_new_anniversaries)
else -> toast(R.string.no_anniversaries) else -> toast(R.string.no_anniversaries)
@ -899,6 +902,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
if (it) { if (it) {
runOnUiThread { runOnUiThread {
updateViewPager() updateViewPager()
setupQuickFilter()
} }
} }
} }