Fix JMAP for File Storage: FileNode/get returns a stale state string
This commit is contained in:
@@ -15,6 +15,7 @@ If you are upgrading from v0.16.x, replace the binary (or run `docker pull`). If
|
||||
- MTA:
|
||||
- Sub-addressing with external directories returns `550 Mailbox not found`.
|
||||
- Disabled aliases continue receiving messages.
|
||||
- JMAP for File Storage: `FileNode/get` returns a stale state string.
|
||||
- Make `SieveSystemInterpreter.defaultReturnPath` and `MtaQueueQuota.match` optional expressions.
|
||||
|
||||
## [0.16.7] - 2026-05-28
|
||||
|
||||
@@ -112,7 +112,7 @@ impl FileNodeGet for Server {
|
||||
}
|
||||
let mut response = GetResponse {
|
||||
account_id: request.account_id.into(),
|
||||
state: cache.get_state(true).into(),
|
||||
state: cache.get_state(false).into(),
|
||||
list: Vec::with_capacity(ids.len()),
|
||||
not_found: vec![],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user