summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--autocrypt/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/autocrypt/src/lib.rs b/autocrypt/src/lib.rs
index 392ded21..6b4e647f 100644
--- a/autocrypt/src/lib.rs
+++ b/autocrypt/src/lib.rs
@@ -306,7 +306,7 @@ impl AutocryptHeaders {
if key == "keydata" {
if let Ok(decoded) = base64::decode(
- &value.replace(" ", "")[..]) {
+ &value.replace(' ', "")[..]) {
if let Ok(cert) = Cert::from_bytes(&decoded[..]) {
header.key = Some(cert);
}