Fix compiler error in --no-default-features build

memfd
Manos Pitsidianakis 2020-03-04 22:04:57 +02:00
parent 84d7e4c034
commit b7175c2400
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
1 changed files with 1 additions and 1 deletions

View File

@ -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);