diff --git a/matrix_sdk_crypto/src/memory_stores.rs b/matrix_sdk_crypto/src/memory_stores.rs index 51303864..67fe9245 100644 --- a/matrix_sdk_crypto/src/memory_stores.rs +++ b/matrix_sdk_crypto/src/memory_stores.rs @@ -199,6 +199,7 @@ impl DeviceStore { } /// Get a read-only view over all devices of the given user. + #[allow(clippy::map_clone)] pub fn user_devices(&self, user_id: &UserId) -> UserDevices { if !self.entries.contains_key(user_id) { self.entries.insert(user_id.clone(), DashMap::new()); @@ -207,7 +208,7 @@ impl DeviceStore { entries: self .entries .get(user_id) - .map(|d| d.clone()) // TODO I'm sure this is not ok but I'm not sure what to do?? + .map(|map| map.clone()) // TODO I'm sure this is not ok but I'm not sure what to do?? .unwrap() .into_read_only(), }