summaryrefslogtreecommitdiffstats
path: root/headers/src/header_components/mailbox_list.rs
diff options
context:
space:
mode:
Diffstat (limited to 'headers/src/header_components/mailbox_list.rs')
-rw-r--r--headers/src/header_components/mailbox_list.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/headers/src/header_components/mailbox_list.rs b/headers/src/header_components/mailbox_list.rs
index 68a9a30..5923008 100644
--- a/headers/src/header_components/mailbox_list.rs
+++ b/headers/src/header_components/mailbox_list.rs
@@ -147,7 +147,7 @@ macro_rules! impl_header_try_from_tuple {
)*
Ok( MailboxList(
//UNWRAP_SAFE: len 0 is not implemented with the macro
- $crate::vec1::Vec1::from_vec(out).unwrap()
+ $crate::vec1::Vec1::try_from_vec(out).unwrap()
) )
}
}