Fix JMAP AddressBook/query fetches wrong resources

This commit is contained in:
Maurus Decimus
2026-05-04 18:52:29 +02:00
parent 4576adfc9c
commit 66867be369
2 changed files with 4 additions and 2 deletions

View File

@@ -16,7 +16,9 @@ If you are upgrading from v0.16.x, replace the binary (or run `docker pull`). If
- `mail-parser` panic with certain messages containing corrupted attachments. - `mail-parser` panic with certain messages containing corrupted attachments.
- Pagination by anchor for queued messages, tasks and metrics. - Pagination by anchor for queued messages, tasks and metrics.
- Spam filter: Use original instead of rewritten `RCPT` on checks. - Spam filter: Use original instead of rewritten `RCPT` on checks.
- JMAP references in nested objects not resolved. - JMAP:
- References in nested objects not resolved.
- `AddressBook/query` fetches wrong resources.
- Import tool fails to restore registry entries. - Import tool fails to restore registry entries.
- FDB: Allow multiple FoundationDB instances in the same process. - FDB: Allow multiple FoundationDB instances in the same process.
- Autoconfig: Return `%EMAILADDRESS%` when no email address is provided. - Autoconfig: Return `%EMAILADDRESS%` when no email address is provided.

View File

@@ -347,7 +347,7 @@ impl ContactCardQuery for Server {
.fetch_dav_resources( .fetch_dav_resources(
access_token.account_id(), access_token.account_id(),
account_id, account_id,
SyncCollection::Calendar, SyncCollection::AddressBook,
) )
.await?; .await?;