melib/imap: change byte cache String -> Vec<u8>

jmap-eventsource
Manos Pitsidianakis 2020-10-13 21:46:03 +03:00
parent 2944fc992b
commit d51d0187a6
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
2 changed files with 3 additions and 6 deletions

View File

@ -82,9 +82,7 @@ pub static SUPPORTED_CAPABILITIES: &[&str] = &[
#[derive(Debug, Default)]
pub struct EnvelopeCache {
bytes: Option<String>,
headers: Option<String>,
body: Option<String>,
bytes: Option<Vec<u8>>,
flags: Option<Flag>,
}

View File

@ -103,12 +103,11 @@ impl BackendOp for ImapOp {
//flags.lock().await.set(Some(_flags));
cache.flags = Some(_flags);
}
cache.bytes =
Some(unsafe { std::str::from_utf8_unchecked(body.unwrap()).to_string() });
cache.bytes = Some(body.unwrap().to_vec());
}
let mut bytes_cache = uid_store.byte_cache.lock()?;
let cache = bytes_cache.entry(uid).or_default();
let ret = cache.bytes.clone().unwrap().into_bytes();
let ret = cache.bytes.clone().unwrap();
Ok(ret)
}))
}