crypto: Add a missing encode call in the sled store
parent
81667173b6
commit
d6c5a4d8aa
|
@ -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(())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue