1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-07-22 17:18:35 +00:00

error messages

This commit is contained in:
avdb 2024-06-17 10:59:33 +00:00 committed by avdb13
parent 40699c395a
commit f9ee8d7505

View file

@ -307,9 +307,9 @@ pub async fn register_route(body: Ruma<register::v3::Request>) -> Result<registe
)
.await
.map_err(|e| {
tracing::error!("join_by_default: {}", e);
tracing::error!("Failed to join default room: {e}");
Error::bad_config("join_by_default.")
Error::bad_config("Failed to join default room.")
})?;
}
}