implement param-filter for caldav

This commit is contained in:
Lennart
2025-12-31 13:07:43 +01:00
parent 47c2a55941
commit bf5bdb96bc
3 changed files with 26 additions and 1 deletions

View File

@@ -30,6 +30,7 @@ pub struct ParamFilterElement {
}
impl ParamFilterElement {
#[must_use]
pub fn match_property(&self, prop: &Property) -> bool {
let Some(param) = prop.get_param(&self.name) else {
return self.is_not_defined.is_some();