From 8bcceb3b86bb4b1fdac444ff623e28bb83d63110 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Fri, 27 Feb 2026 07:46:09 +0100 Subject: [PATCH] increase limit to usual propfind response per collection --- radicale/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/utils.py b/radicale/utils.py index 8d7ba914..9e59dc7b 100644 --- a/radicale/utils.py +++ b/radicale/utils.py @@ -385,7 +385,7 @@ def limit_str(content: str, limit: int) -> str: return content -def textwrap_str(content: str, limit: int = 2000) -> str: +def textwrap_str(content: str, limit: int = 3000) -> str: # TODO: add support for config option and prefix return textwrap.indent(limit_str(content, limit), " ", lambda line: True)