increase limit to usual propfind response per collection

This commit is contained in:
Peter Bieringer
2026-02-27 07:46:09 +01:00
parent c72347c715
commit 8bcceb3b86

View File

@@ -385,7 +385,7 @@ def limit_str(content: str, limit: int) -> str:
return content 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 # TODO: add support for config option and prefix
return textwrap.indent(limit_str(content, limit), " ", lambda line: True) return textwrap.indent(limit_str(content, limit), " ", lambda line: True)