diff --git a/src/migration_0_12.rs b/src/migration_0_12.rs index 1e49aa3..6715f3d 100644 --- a/src/migration_0_12.rs +++ b/src/migration_0_12.rs @@ -16,6 +16,10 @@ pub async fn validate_calendar_objects_0_12( ical_dev::parser::ical::IcalObjectParser::new(object.get_ics().as_bytes()) .expect_one() { + if ical_dev::parser::ParserError::InvalidVersion == err { + // This is a known issue that might cause a lot of spam in the logs + continue; + } success = false; error!( "An error occured parsing a calendar object: principal={principal}, calendar={calendar}, object_id={object_id}: {err}",