crypto: Add a missing encode call in the sled store

master
Damir Jelić 2021-01-27 15:15:45 +01:00
parent 81667173b6
commit d6c5a4d8aa
1 changed files with 1 additions and 1 deletions

View File

@ -573,7 +573,7 @@ impl CryptoStore for SledStore {
}
async fn remove_value(&self, key: &str) -> Result<()> {
self.values.remove(key)?;
self.values.remove(key.encode())?;
Ok(())
}