Compare commits

..

2 Commits

Author SHA1 Message Date
Lennart
48b2e614a8 Suppress ical invalid version error 2026-01-15 11:15:20 +01:00
Lennart K
f26214abb9 build Docker images for dev branch 2026-01-12 11:15:08 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ name: Docker
on:
push:
branches: ["main"]
branches: ["main", "dev"]
release:
types: ["published"]

View File

@@ -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}",