1
0
Fork 0
mirror of https://forgejo.ellis.link/continuwuation/continuwuity.git synced 2025-07-29 19:28:31 +00:00

bump ruwuma to fix a threads issue, fix more error codes, delete legacy sytest cruft

Signed-off-by: June Clementine Strawberry <june@3.dog>
This commit is contained in:
June Clementine Strawberry 2025-03-10 12:29:54 -04:00
parent df1edcf498
commit 5ba0c02d52
No known key found for this signature in database
9 changed files with 22 additions and 1776 deletions

View file

@ -92,7 +92,7 @@ pub(crate) async fn get_alias_route(
let Ok((room_id, servers)) = services.rooms.alias.resolve_alias(&room_alias, None).await
else {
return Err!(Request(Unknown("Room with alias not found.")));
return Err!(Request(NotFound("Room with alias not found.")));
};
let servers = room_available_servers(&services, &room_id, &room_alias, servers).await;