From 20cd0bedfa381f3de937a00698107879fad45e76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Mon, 1 Sep 2025 14:14:47 +0200 Subject: [PATCH] chore: Fix a clippy warning about a useless conversion --- crates/matrix-sdk-sqlite/src/state_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk-sqlite/src/state_store.rs b/crates/matrix-sdk-sqlite/src/state_store.rs index 1633c9aa4..3c5111b2c 100644 --- a/crates/matrix-sdk-sqlite/src/state_store.rs +++ b/crates/matrix-sdk-sqlite/src/state_store.rs @@ -1629,7 +1629,7 @@ impl StateStore for SqliteStateStore { (self.encode_key(keys::DISPLAY_NAME, normalized), display_name) }); - iter::once(raw).chain(normalized.into_iter()) + iter::once(raw).chain(normalized) }) .collect::>(); let names = names_map.keys().cloned().collect();