From 6c7771f170e778275882202b768c183b2229d1a8 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 10 Jul 2023 16:01:35 +0100 Subject: [PATCH] Add fallback `default_server_config` to element.io configs (#1056) --- element.io/nightly/config.json | 8 ++++++++ element.io/release/config.json | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/element.io/nightly/config.json b/element.io/nightly/config.json index 620fd66..7d813de 100644 --- a/element.io/nightly/config.json +++ b/element.io/nightly/config.json @@ -1,6 +1,14 @@ { "update_base_url": "https://packages.element.io/nightly/update/", "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 Nightly", "integrations_ui_url": "https://scalar.vector.im/", "integrations_rest_url": "https://scalar.vector.im/api", diff --git a/element.io/release/config.json b/element.io/release/config.json index 223afdf..97dde9e 100644 --- a/element.io/release/config.json +++ b/element.io/release/config.json @@ -1,6 +1,14 @@ { "update_base_url": "https://packages.element.io/desktop/update/", "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",