diff options
Diffstat (limited to 'src/mailbox.rs')
-rw-r--r-- | src/mailbox.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailbox.rs b/src/mailbox.rs index 249d329..54c22e3 100644 --- a/src/mailbox.rs +++ b/src/mailbox.rs @@ -104,7 +104,7 @@ fn dump(uid_index: &Bayou<UidIndex>) { "{} {} {}", uid, hex::encode(ident.0), - s.table.get(ident).cloned().unwrap_or_default().1.join(", ") + s.table.get(ident).cloned().unwrap().1.join(", ") ); } println!(""); |