make getting config work with multi-domains

This commit is contained in:
BlockListed 2023-09-09 14:22:09 +02:00
parent 3421dfcbf5
commit ab96b26981
No known key found for this signature in database
GPG Key ID: 2D204777C477B588
1 changed files with 2 additions and 1 deletions

View File

@ -190,7 +190,8 @@ fn version() -> Json<&'static str> {
#[get("/config")]
fn config() -> Json<Value> {
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