mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-10 09:32:19 +08:00
Provide error details when failing to obtain modseq
This commit is contained in:
parent
af199e2b37
commit
4bf191f06b
1 changed files with 12 additions and 10 deletions
|
@ -215,7 +215,7 @@ impl<T: SessionStream> SessionData<T> {
|
|||
|
||||
pub async fn get_modseq(&self, account_id: u32) -> crate::op::Result<Option<u64>> {
|
||||
// Obtain current modseq
|
||||
if let Ok(modseq) = self
|
||||
match self
|
||||
.jmap
|
||||
.core
|
||||
.storage
|
||||
|
@ -223,17 +223,19 @@ impl<T: SessionStream> SessionData<T> {
|
|||
.get_last_change_id(account_id, Collection::Email)
|
||||
.await
|
||||
{
|
||||
Ok(modseq)
|
||||
} else {
|
||||
Ok(modseq) => Ok(modseq),
|
||||
Err(err) => {
|
||||
tracing::error!(parent: &self.span,
|
||||
event = "error",
|
||||
context = "store",
|
||||
account_id = account_id,
|
||||
collection = ?Collection::Email,
|
||||
reason = ?err,
|
||||
"Failed to obtain modseq");
|
||||
Err(StatusResponse::database_failure())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub async fn get_uid_validity(&self, mailbox: &MailboxId) -> crate::op::Result<u32> {
|
||||
self.jmap
|
||||
|
|
Loading…
Reference in a new issue