From b9b80a8e88195882f9a02e6eeecd2df166e78956 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 2 Aug 2026 21:01:11 +0200 Subject: [PATCH] max_vevent_rrule_occurrence: cosmetics --- radicale/item/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/item/__init__.py b/radicale/item/__init__.py index 82981036..c0511b43 100644 --- a/radicale/item/__init__.py +++ b/radicale/item/__init__.py @@ -55,8 +55,8 @@ VCF_TO_ICS_BDAY_NO_YEAR: list = ["1604"] # List of RRULE frequencies and their interval in seconds RRULE_FREQUENCIES_TO_INTERVAL: dict[str, float] = { - "YEARLY": 365*60*60*24, - "MONTHLY": 365/12*60*60*24, + "YEARLY": 60*60*24*365, + "MONTHLY": 60*60*24*365/12, "WEEKLY": 60*60*24*7, "DAILY": 60*60*24, "HOURLY": 60*60,