diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-18 15:53:01 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-18 15:53:01 +0100 |
commit | f3afd6ef1a44ef8b87a3f7257a5e42e69c75523e (patch) | |
tree | 874e29441a10e962f0c79679d1b0f45bc1883620 /synapse | |
parent | Log a warning if an AS yields an invalid 3PU lookup result (diff) | |
download | synapse-f3afd6ef1a44ef8b87a3f7257a5e42e69c75523e.tar.xz |
Remove TODO note about request fields being strings - they're always strings
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/rest/client/v2_alpha/thirdparty.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/rest/client/v2_alpha/thirdparty.py b/synapse/rest/client/v2_alpha/thirdparty.py index 4b2a93f1bb..bce104c545 100644 --- a/synapse/rest/client/v2_alpha/thirdparty.py +++ b/synapse/rest/client/v2_alpha/thirdparty.py @@ -38,8 +38,6 @@ class ThirdPartyUserServlet(RestServlet): fields = request.args del fields["access_token"] - # TODO(paul): Some type checking on the request args might be nice - # They should probably all be strings results = yield self.appservice_handler.query_3pu(protocol, fields) defer.returnValue((200, results)) |