We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ef8e106 + bbb6875 commit 24d8c37Copy full SHA for 24d8c37
app/src/main/kotlin/org/fossify/calendar/adapters/QuickFilterEventTypeAdapter.kt
@@ -38,9 +38,11 @@ class QuickFilterEventTypeAdapter(
38
.firstOrNull { eventType -> eventType.id.toString() == quickFilterEventType }
39
?: return@forEach
40
quickFilterEventTypes.add(eventType)
41
+ }
42
- if (displayEventTypes.contains(eventType.id.toString())) {
43
- activeKeys.add(eventType.id!!)
+ allEventTypes.forEach {
44
+ if (displayEventTypes.contains(it.id.toString())) {
45
+ activeKeys.add(it.id!!)
46
}
47
48
0 commit comments