From 7c50944ccccfca72937cf08e6de0e61531bb4903 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 21 Mar 2026 07:31:08 +0100 Subject: [PATCH] sharing/bday: add birthday to event description --- radicale/item/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/radicale/item/__init__.py b/radicale/item/__init__.py index d6e8a474..71f174e6 100644 --- a/radicale/item/__init__.py +++ b/radicale/item/__init__.py @@ -537,6 +537,7 @@ class Item: pass bdayS = match[1] + match[2] + match[3] + bdaySdesc = match[1] + "-" + match[2] + "-" + match[3] bdayY = int(match[1]) bdayM = int(match[2]) bdayD = int(match[3]) @@ -594,6 +595,9 @@ class Item: # add transparency item_ics.vevent.add('transp').value = "TRANSPARENT" + # add description + item_ics.vevent.add('description').value = "BDAY=" + bdaySdesc + href = self.href if href is not None: href = href.rstrip(".vcf") + ".ics"