summaryrefslogtreecommitdiffstats
path: root/melib/src/backends/jmap/mailbox.rs
diff options
context:
space:
mode:
Diffstat (limited to 'melib/src/backends/jmap/mailbox.rs')
-rw-r--r--melib/src/backends/jmap/mailbox.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/melib/src/backends/jmap/mailbox.rs b/melib/src/backends/jmap/mailbox.rs
index cbed47e4..cf1987a4 100644
--- a/melib/src/backends/jmap/mailbox.rs
+++ b/melib/src/backends/jmap/mailbox.rs
@@ -28,7 +28,7 @@ pub struct JmapMailbox {
pub name: String,
pub path: String,
pub hash: MailboxHash,
- pub v: Vec<MailboxHash>,
+ pub children: Vec<MailboxHash>,
pub id: String,
pub is_subscribed: bool,
pub my_rights: JmapRights,
@@ -62,7 +62,7 @@ impl BackendMailbox for JmapMailbox {
}
fn children(&self) -> &[MailboxHash] {
- &self.v
+ &self.children
}
fn parent(&self) -> Option<MailboxHash> {