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

pull/234/head
Manos Pitsidianakis 4 years ago
parent 84d7e4c034
commit b7175c2400
No known key found for this signature in database
GPG Key ID: 73627C2F690DF710

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

Loading…
Cancel
Save