1 files changed, 5 insertions, 4 deletions
diff --git a/synapse/rest/well_known.py b/synapse/rest/well_known.py
index fd3b17a5ad..b8b4b5379b 100644
--- a/synapse/rest/well_known.py
+++ b/synapse/rest/well_known.py
@@ -44,14 +44,15 @@ class WellKnownBuilder:
"base_url": self._config.registration.default_identity_server
}
- if self._config.auth.oauth_delegation_enabled:
+ # We use the MSC3861 values as they are used by multiple MSCs
+ if self._config.experimental.msc3861.enabled:
result["org.matrix.msc2965.authentication"] = {
- "issuer": self._config.auth.oauth_delegation_issuer
+ "issuer": self._config.experimental.msc3861.issuer
}
- if self._config.auth.oauth_delegation_account != "":
+ if self._config.experimental.msc3861.account_management_url is not None:
result["org.matrix.msc2965.authentication"][
"account"
- ] = self._config.auth.oauth_delegation_account
+ ] = self._config.experimental.msc3861.account_management_url
if self._config.server.extra_well_known_client_content:
for (
|