From 98e36ffd0e927ef65fb24591f3c4c3b058996ab9 Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Mon, 10 Jul 2023 04:12:53 -0600 Subject: [PATCH] Add `default_server_config` fallback to element.io configs (#19695) Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> --- element.io/app/config.json | 8 ++++++++ element.io/develop/config.json | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/element.io/app/config.json b/element.io/app/config.json index 0ecec414c4..a549322c67 100644 --- a/element.io/app/config.json +++ b/element.io/app/config.json @@ -1,5 +1,13 @@ { "default_server_name": "matrix.org", + "default_server_config": { + "m.homeserver": { + "base_url": "https://matrix-client.matrix.org" + }, + "m.identity_server": { + "base_url": "https://vector.im" + } + }, "brand": "Element", "integrations_ui_url": "https://scalar.vector.im/", "integrations_rest_url": "https://scalar.vector.im/api", diff --git a/element.io/develop/config.json b/element.io/develop/config.json index e5c3f22e71..43e7e36357 100644 --- a/element.io/develop/config.json +++ b/element.io/develop/config.json @@ -1,5 +1,13 @@ { "default_server_name": "matrix.org", + "default_server_config": { + "m.homeserver": { + "base_url": "https://matrix-client.matrix.org" + }, + "m.identity_server": { + "base_url": "https://vector.im" + } + }, "brand": "Element", "integrations_ui_url": "https://scalar.vector.im/", "integrations_rest_url": "https://scalar.vector.im/api",