diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-05-03 12:43:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 12:43:12 -0400 |
commit | aa5f5ede3331bf916f459137e9d0df3ac0743093 (patch) | |
tree | c8c35e984f4b0211d92caf4c00315ee00dc4b5f9 /synapse | |
parent | Add extra debug logging to federation sender (#12614) (diff) | |
download | synapse-aa5f5ede3331bf916f459137e9d0df3ac0743093.tar.xz |
Remove unstable identifiers for MSC3069. (#12596)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/rest/client/account.py | 2 |
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), } |