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.
1 parent 6f9011f commit 2ea6ee8Copy full SHA for 2ea6ee8
Sources/Filters/CalendarFilter.swift
@@ -257,6 +257,13 @@ enum CalendarFilter {
257
add(CalendarFilter.IgnoreIds(uuids: opts.ignoreCalendarIds))
258
}
259
260
+ if !opts.selectCalendarLabels.isEmpty {
261
+ add(CalendarFilter.SelectLabels(labels: opts.selectCalendarLabels))
262
+ }
263
+
264
+ if !opts.ignoreCalendarLabels.isEmpty {
265
+ add(CalendarFilter.IgnoreLabels(labels: opts.ignoreCalendarLabels))
266
267
if !opts.selectCalendarSources.isEmpty {
268
add(CalendarFilter.SelectSources(sources: opts.selectCalendarSources))
269
0 commit comments