aboutsummaryrefslogtreecommitdiff
path: root/src/mail/mailbox.rs
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2024-01-05 18:59:19 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2024-01-05 18:59:19 +0100
commit4806f7ff84c595ec6647744577388fe4fab33736 (patch)
treea4d3c0eebb9a40872449695e651b8f7df1d54d07 /src/mail/mailbox.rs
parentadf4d33f226a745330a3bb802fe9b96f263a0895 (diff)
downloadaerogramme-4806f7ff84c595ec6647744577388fe4fab33736.tar.gz
aerogramme-4806f7ff84c595ec6647744577388fe4fab33736.zip
WIP rewrite with a query managerfeat/more-imap-qol
Diffstat (limited to 'src/mail/mailbox.rs')
-rw-r--r--src/mail/mailbox.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mail/mailbox.rs b/src/mail/mailbox.rs
index 306fd7d..2a0a24a 100644
--- a/src/mail/mailbox.rs
+++ b/src/mail/mailbox.rs
@@ -82,7 +82,7 @@ impl Mailbox {
self.mbox.read().await.fetch_full(id, message_key).await
}
- async fn frozen(self: &std::sync::Arc<Self>) -> super::snapshot::FrozenMailbox {
+ pub async fn frozen(self: &std::sync::Arc<Self>) -> super::snapshot::FrozenMailbox {
super::snapshot::FrozenMailbox::new(self.clone()).await
}