From 62166eb2cce771f1a29c875913717641b0cb7956 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 25 Nov 2025 20:02:50 +0100 Subject: [PATCH 1/2] fix typo related to collection delete hook, fixes https://github.com/Kozea/Radicale/issues/1920 --- radicale/app/delete.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/app/delete.py b/radicale/app/delete.py index 695de45f..61fe6c43 100644 --- a/radicale/app/delete.py +++ b/radicale/app/delete.py @@ -87,7 +87,7 @@ class ApplicationPartDelete(ApplicationBase): path=access.path, content=i.uid, uid=i.uid, - old_content=item.serialize(), # type: ignore + old_content=i.serialize(), # type: ignore new_content=None ) ) From 62353b42ee0ef556815c086a025dc2f0a2fedbc0 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 25 Nov 2025 20:03:27 +0100 Subject: [PATCH 2/2] changelog for: fix typo related to collection delete hook --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25129ef1..9d5cca20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 3.5.9.dev * Extend: [auth] add support for type http_remote_user * Extend: logging of invalid sync-token with user, path, remote host and useragent +* Fix: typo related to collection delete hook ## 3.5.8 * Extend: [auth] re-factor & overhaul LDAP authentication, especially for Python's ldap module