Fix JMAP for File Storage: FileNode/get returns a stale state string

This commit is contained in:
Maurus Decimus
2026-06-06 11:11:00 +02:00
parent 89ecee3bea
commit d0b0cb9438
2 changed files with 2 additions and 1 deletions

View File

@@ -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![],
};