fix(base): Fix a new clippy warning

This commit is contained in:
Damir Jelić
2022-01-03 10:23:38 +01:00
parent f7f30f1636
commit c22fa4e3fd
@@ -395,7 +395,7 @@ impl MemoryStore {
.map(|m| m.iter().map(|r| (r.key().clone(), r.value().clone())).collect())
})
})
.unwrap_or_else(Vec::new))
.unwrap_or_default())
}
async fn get_custom_value(&self, key: &[u8]) -> Result<Option<Vec<u8>>> {