crypto: Fix a lint issue.

master
Damir Jelić 2020-12-08 10:50:58 +01:00
parent e24fb8b471
commit 35247fac2a
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ impl Account {
return Err(OlmError::SessionWedged(user_id, sender_key));
}
}
Err(e) => return Err(e.into()),
Err(e) => return Err(e),
};
debug!("Decrypted a to-device event {:?}", event);