Merge pull request #1922 from pbiering/fix-1920

Fix 1920
This commit is contained in:
Peter Bieringer
2025-11-25 20:20:57 +01:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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
)
)