From 2887f340c92cf751b57bc82cb5a804c66640c781 Mon Sep 17 00:00:00 2001 From: Ginger Date: Mon, 13 Apr 2026 13:00:47 -0400 Subject: [PATCH] refactor: Fix errors in `api/server/state_ids.rs` --- src/api/server/state_ids.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/server/state_ids.rs b/src/api/server/state_ids.rs index c9dea3116..5cda24b86 100644 --- a/src/api/server/state_ids.rs +++ b/src/api/server/state_ids.rs @@ -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)) }