From 89ad809270dc0dbf428858a466aa9b90e9a8dccf Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Thu, 12 Feb 2026 22:35:06 +0000 Subject: [PATCH] docs: Correct comment on rtc_focus_server_urls --- conduwuit-example.toml | 6 ++---- src/core/config/mod.rs | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/conduwuit-example.toml b/conduwuit-example.toml index 963d9847..025f9e63 100644 --- a/conduwuit-example.toml +++ b/conduwuit-example.toml @@ -1824,14 +1824,12 @@ # MSC4143 client endpoint at /.well-known/matrix/client. If you're # setting up livekit, you'd want something like: # rtc_focus_server_urls = [ -# { type = "livekit", server_url = "https://livekit.example.com" }, +# { type = "livekit", livekit_service_url = "https://livekit.example.com" }, # ] # # To disable, set this to be an empty vector (`[]`). # -# Defaults to: [] -# -#rtc_focus_server_urls = +#rtc_focus_server_urls = [] [global.blurhashing] diff --git a/src/core/config/mod.rs b/src/core/config/mod.rs index 6e052843..22793fc1 100644 --- a/src/core/config/mod.rs +++ b/src/core/config/mod.rs @@ -2116,12 +2116,12 @@ pub struct WellKnownConfig { /// MSC4143 client endpoint at /.well-known/matrix/client. If you're /// setting up livekit, you'd want something like: /// rtc_focus_server_urls = [ - /// { type = "livekit", server_url = "https://livekit.example.com" }, + /// { type = "livekit", livekit_service_url = "https://livekit.example.com" }, /// ] /// /// To disable, set this to be an empty vector (`[]`). /// - /// Defaults to: [] + /// default: [] #[serde(default = "default_rtc_focus_urls")] pub rtc_focus_server_urls: Vec, }