refactor: Fix errors in api/server/state_ids.rs

This commit is contained in:
Ginger
2026-04-13 13:00:47 -04:00
parent 7a8a07e55f
commit 2887f340c9
+1 -1
View File
@@ -60,5 +60,5 @@ pub(crate) async fn get_room_state_ids_route(
.try_collect()
.await?;
Ok(get_room_state_ids::v1::Response { auth_chain_ids, pdu_ids })
Ok(get_room_state_ids::v1::Response::new(auth_chain_ids, pdu_ids))
}