docs: Correct comment on rtc_focus_server_urls

This commit is contained in:
Jade Ellis 2026-02-12 22:35:06 +00:00 committed by Ellis Git
parent ecd3a4eb41
commit 89ad809270
2 changed files with 4 additions and 6 deletions

View file

@ -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]

View file

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