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, }