From b57dfddc19f0b2f5f580b802452c6c779f8f480f Mon Sep 17 00:00:00 2001 From: Nineko Date: Mon, 25 Dec 2023 15:13:34 +0100 Subject: [PATCH] fix: fixed compile error caused by name change Co-authored-by: June --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 74a2f6f3..27bd31f3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -456,7 +456,7 @@ fn routes() -> Router { .ruma_route(client_server::get_relating_events_with_rel_type_route) .ruma_route(client_server::get_relating_events_route) .ruma_route(client_server::get_hierarchy_route) - .nest("/", server_routes()) + .nest("/", server_server_routes()) .route( "/_matrix/client/r0/rooms/:room_id/initialSync", get(initial_sync),