From e821258fa0a7278e048e51e438d0bee9fa0b6b06 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 30 May 2026 08:54:41 +0200 Subject: [PATCH] sharing/bday/age_max: fix default --- radicale/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/config.py b/radicale/config.py index 413b0dfa..24899190 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -607,7 +607,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([ "help": "conversion bday alarm trigger template", "type": str}), ("conversion_bday_age_max", { - "value": 99, + "value": "99", "help": "conversion bday age max", "type": positive_int}), ])),