From e45c7da414601b557b1a3b39095602660d1d9e41 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 8 Mar 2026 12:17:40 +0100 Subject: [PATCH] sharing: fix typo and type def --- radicale/sharing/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/sharing/__init__.py b/radicale/sharing/__init__.py index eeda39ad..d8b9b93f 100644 --- a/radicale/sharing/__init__.py +++ b/radicale/sharing/__init__.py @@ -80,13 +80,13 @@ API_TYPES_V1: dict[str, type] = { "PermittedCreateCollectionByToken": bool, "ShareType": str, "PathOrToken": str, - "PathMapped:": str, + "PathMapped": str, "Owner": str, "User": str, "Permissions": str, "Enabled": bool, "Hidden": bool, - "Properties": str} + "Properties": dict} TOKEN_PATTERN_V1: str = "(v1/[a-zA-Z0-9_=\\-]{44})"