diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-05 18:59:19 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-05 18:59:19 +0100 |
commit | 4806f7ff84c595ec6647744577388fe4fab33736 (patch) | |
tree | a4d3c0eebb9a40872449695e651b8f7df1d54d07 /src/imap/command/selected.rs | |
parent | adf4d33f226a745330a3bb802fe9b96f263a0895 (diff) | |
download | aerogramme-4806f7ff84c595ec6647744577388fe4fab33736.tar.gz aerogramme-4806f7ff84c595ec6647744577388fe4fab33736.zip |
WIP rewrite with a query managerfeat/more-imap-qol
Diffstat (limited to 'src/imap/command/selected.rs')
-rw-r--r-- | src/imap/command/selected.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imap/command/selected.rs b/src/imap/command/selected.rs index 933f397..35c3eb4 100644 --- a/src/imap/command/selected.rs +++ b/src/imap/command/selected.rs @@ -152,7 +152,7 @@ impl<'a> SelectedContext<'a> { } pub async fn noop(self) -> Result<(Response<'static>, flow::Transition)> { - self.mailbox.mailbox.force_sync().await?; + self.mailbox.0.mailbox.force_sync().await?; let updates = self.mailbox.update().await?; Ok(( |