diff --git a/src/api/core/mod.rs b/src/api/core/mod.rs index 7712ea82..3bd7c641 100644 --- a/src/api/core/mod.rs +++ b/src/api/core/mod.rs @@ -190,7 +190,8 @@ fn version() -> Json<&'static str> { #[get("/config")] fn config() -> Json { - let domain = crate::CONFIG.domain(); + // TODO: maybe this should be extracted from the current request params + let domain = crate::CONFIG.main_domain(); let feature_states = parse_experimental_client_feature_flags(&crate::CONFIG.experimental_client_feature_flags()); Json(json!({ // Note: The clients use this version to handle backwards compatibility concerns