From b7175c24001d879af987bdb4aa9c3f4643e22a4a Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Wed, 4 Mar 2020 22:04:57 +0200 Subject: [PATCH] Fix compiler error in --no-default-features build --- src/conf/accounts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf/accounts.rs b/src/conf/accounts.rs index cd2726893..13da3714c 100644 --- a/src/conf/accounts.rs +++ b/src/conf/accounts.rs @@ -1122,7 +1122,7 @@ impl Account { let mut ret = SmallVec::new(); let envelopes = self.collection.envelopes.read().unwrap(); - for &env_hash in &self.collection[&mailbox_hash].iter() { + for &env_hash in self.collection[&mailbox_hash].iter() { let envelope = &envelopes[&env_hash]; if envelope.subject().contains(&search_term) { ret.push(env_hash);