crypto: Save the device to the sqlite db.

This commit is contained in:
Damir Jelić 2020-04-21 09:28:26 +02:00
parent 001a0de00f
commit b572381a8e

View file

@ -609,6 +609,7 @@ impl CryptoStore for SqliteStore {
}
async fn save_device(&self, device: Device) -> Result<()> {
self.devices.add(device.clone());
self.save_device_helper(device).await
}