summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2022-05-03 12:43:12 -0400
committerGitHub <noreply@github.com>2022-05-03 12:43:12 -0400
commitaa5f5ede3331bf916f459137e9d0df3ac0743093 (patch)
treec8c35e984f4b0211d92caf4c00315ee00dc4b5f9 /synapse/rest
parentAdd extra debug logging to federation sender (#12614) (diff)
downloadsynapse-aa5f5ede3331bf916f459137e9d0df3ac0743093.tar.xz
Remove unstable identifiers for MSC3069. (#12596)
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/client/account.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/rest/client/account.py b/synapse/rest/client/account.py
index 5587cae98a..bdc4a9c068 100644
--- a/synapse/rest/client/account.py
+++ b/synapse/rest/client/account.py
@@ -882,9 +882,7 @@ class WhoamiRestServlet(RestServlet):
 
         response = {
             "user_id": requester.user.to_string(),
-            # MSC: https://github.com/matrix-org/matrix-doc/pull/3069
             # Entered spec in Matrix 1.2
-            "org.matrix.msc3069.is_guest": bool(requester.is_guest),
             "is_guest": bool(requester.is_guest),
         }