imap: Don't fail on WouldBlock on ImapBlockingConnection

memfd
Manos Pitsidianakis 5 years ago
parent ca51077f53
commit 6b2a1f7757
No known key found for this signature in database
GPG Key ID: 73627C2F690DF710

@ -507,6 +507,9 @@ impl Iterator for ImapBlockingConnection {
return Some(result[0..*prev_res_length].to_vec());
}
}
Err(e) if e.kind() == std::io::ErrorKind::WouldBlock => {
continue;
}
Err(e) => {
debug!(&conn.stream);
debug!(&e);

Loading…
Cancel
Save