chore: Clippy fixes

This commit is contained in:
Ginger
2026-04-13 18:31:16 -04:00
parent 02f69a7160
commit a8a8e1ea51
25 changed files with 50 additions and 51 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ pub(crate) async fn list_rooms(
.iter_ids()
.filter_map(|room_id| async move {
if !services.rooms.metadata.is_banned(&room_id).await {
Some(room_id.to_owned())
Some(room_id.clone())
} else {
None
}